html{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body{
    margin: 0;
    background-color: #f7e177;
}

.header{
    display: flex;
    justify-content: space-between;
    background-color: #0D0D0D;
    padding: 16px;
    color: #F2D43D;
    align-items: center;
}

.header-logo{
    font-size: 50px;
    text-transform: capitalize;
    margin-left: 30px;
}

.header-nav ul{
    display: flex;
    list-style-type: none;
    font-size: 23px;
    gap: 16px;
    margin-right: 30px;
}

.header-nav a{
    color: #F2D43D;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
}

.header-nav a:hover{
    background-color: #730202;
}

main{
    background-color: #f7e177;
    margin-top: 36px;
}

.imagens{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.imagens div{
    height: 250px;
    margin-bottom: 36px;
}

.tamanho{
    height: 100%;
    border-radius: 5px;
}

img:hover{
    filter: grayscale(100%);
}

footer{
    background-color: #0D0D0D;
    font-size: 15px;
    color: #F2D43D;
    padding: 20px;
    text-align: center;
    font-style: italic;
}