header { 
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
}


body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0px;
}


main {
    padding: 20px;
    
}

ul {
    list-style: none;
    padding: 0px;
    
}

li {
    margin: 10px 0px;
    
}

a {
    text-decoration: none;
    color: blue;
    font-size: 18px;
}
/* Навадення курсору на переходні страниці */
a:hover {
    color: silver;
}
/* Меню - навігація */
.menu {
    background: #574c4c15;
    color: black;
    padding: 20px;
    border-radius: 60px;
    width: 250px;
    height: 310px;
    box-shadow: 0px 10px 15px black
    

}
/* Пояснення стосовно кожної теми */
.info {
    background: #574c4c15;
    padding: 30px;
    border-radius: 70px;
    box-shadow: 0px 10px 15px silver;
}
/* СТОРІНКА: div-span */
.span{
 color: burlywood;
 font-weight: bold;
}

.divspan {
    background: lightblue;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
}


/* СТОРІНКА: display */
.block-example {
    display: block;
    background: lightblue;
    margin: 10px 0;
    padding: 10px;
}

.inline-example {
    display: inline;
    background: yellow;
    padding: 5px;
}

.flex-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.flex-container div {
    background: orange;
    padding: 10px;
}
.content-box {
    box-sizing: content-box;
    background: lightgreen;
}

.border-box {
    box-sizing: border-box;
    background: lightskyblue;
}
/* Display + Overflow*/
.box {
    width: 200px;
    padding: 20px;
    border: 5px solid black;
    margin: 10px 0;
    max-height: 100px;

}
/* СТОРІНК: Float*/
.float-box {
    float: left;
    width: 120px;
    height: 120px;
    background: lightblue;
    margin-right: 10px;
    padding: 10px;
}

.clear-box {
    clear: both;
    background: lightcoral;
    padding: 10px;
    margin-top: 10px;
}




/* СТОРІНКА: Overflow */

.overflow-visible {
    float: right;
    overflow: visible;
    background: lightblue;
}

.overflow-hidden {
    overflow: hidden;
    background: lightcoral;
}

.overflow-scroll {
    overflow: scroll;
    background: lightgreen;
}

.overflow-auto {
    overflow: auto;
    background: lightyellow;
}

/* СТОРІНКА: position*/

.static-box {
    background: lightgray;
    padding: 10px;
    margin: 10px 0;
}

.relative-box {
    position: relative;
    top: 10px;
    left: 10px;
    background: lightblue;
    padding: 10px;
}

.parent {
    position: relative;
    background: #ddd;
    height: 150px;
    margin: 20px 0;
}

.absolute-box {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    padding: 10px;
}

.fixed-box {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: black;
    color: white;
    padding: 10px;
}

.sticky-box {
    position: sticky;
    top: 0;
    background: yellow;
    padding: 10px;
}

/* Окно з прокрутом на головній*/ 
.layout {
    display: flex;
    gap: 20px;
    padding: 20px;
}