body{
    width: 1170px;
    margin: auto;
    text-align: center;
}

header{
    position: fixed;
    top: 0;
    background-color: #fff8ad;
    width: 1170px;
    height: 100px;
}

#banner{
    margin-top: 175px;
    border-radius: 10px;
}

nav{
    position: fixed;
    top: 100px;
    width: 1170px;
    background-color: #f7cade;
    /*height: 50px;*/
}

#logo{
    margin-top: 10px;
    margin-right: 10px;
    height: 80px;
    width: auto;
    float: right;
}

header h1{
    display: inline-block;
    color: #eb619f;
    text-transform: uppercase;
}

nav ul{
    margin: 0;
    padding: 0;
}

nav ul li{
    margin: 16px 0px 16px 0px;
    display: inline-block;
    width: 24%;
}

nav ul li a{
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
    padding: 8px 0;
}

nav ul li a:hover{
    background-color: #ef72aa;
}

.active{
    color: #b6aed5;
}

#banner{
    width: 100%;
    height: auto;
}

section{
    /*    background-color: #c1dfad;*/
}

section article{
    display: inline-block;
    box-sizing: border-box;
    width: 33%;
    border: 1px solid #556b2f;
    margin-bottom: 5px;
    border-radius: 10px;
    background-color: #c1dfad;
}

/*section article:nth-child(3n){
    background-color: #cceeee;
}*/

.colored{
    background-color: #cceeee;
}



section article img{
    margin: 16px;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

section article p{
    text-align: left;
    padding: 16px;
}

footer{
    /*margin-top: 5px;*/
    margin-bottom: 5px;
    /*height: 100px;*/
    background-color: #b6aed5;
    /*text-align: center;*/
}

footer ul{

    box-sizing: border-box;
    display: inline-block;
    text-align: left;
    list-style-type: none;
    /*width: 24%;*/
    padding-left: 0;
}

footer ul li {
    color: #f5db08;
    font-weight: bold;
}

footer div {
    margin: 0;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    width: 24%;
    box-sizing: border-box;
    /*border: 1px solid red ;*/
}


