@import url('https://fonts.googleapis.com/css2?family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #eae9d5;
    background-color: #1e1e1e;
}
header{
    width: 100%;
    height: 10%;
    font: 400 19px "Tomorrow";
}
nav{
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #043266;
}
nav .menu-toggle{
    display: none; 
    background: none;
    border: none;
    color: #eae9d5;
    font-size: 40px;
    cursor: pointer;
}
nav div.logo img{
    width: 45%;
}
nav div.itens ul{
    margin: 5px;
    padding: 10px;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
nav div.itens ul li{
    width: max-content;
}
nav div.itens ul li a{
    text-decoration: none;
    margin-right: 20px;
    color: #eae9d5;
}
footer{
    width: 100%;
    max-height: 10%;
    padding: 20px;
    font-family: Tomorrow;
    background-color: #043266;
}
footer .rodape{
    width: 100%;
    max-height: 100px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer .rodape img{
    width: 4%;
    position: relative;
    top: -20px;
    border-radius: 15px;
}
footer .rodape h3{
    margin-bottom: 15px
}
footer .rodape p{
    margin-bottom: 50px;
}
main{
    flex:1
}
@media only screen and (min-width:1000px) and (max-width: 1400px){
    footer .rodape img{
        width: 5.5%;
    }
}
@media only screen and (min-width:900px) and (max-width: 1000px){
    header{
        font-size: 18px;
    }
    nav div.logo img{
        width: 55%;
    }
    footer .rodape img{
        width: 6%;
    }
}
@media only screen and (min-width:750px) and (max-width: 899px){
    header{
        font-size: 16px;
    }
    nav div.logo img{
        width: 55%;
    }
    footer .rodape{
        height: 90px;
    }
    footer .rodape img{
        width: 8%;
    }
    footer .rodape h3{
        font-size: 17px;
    }
    footer .rodape p{
        font-size: 14px;
        margin-bottom: 40px;
    }
}
@media only screen and (min-width:690px) and (max-width: 749px){
    header{
        font-size: 15px;
    }
    nav div.logo img{
        width: 65%;
    }
    footer .rodape{
        height: 80px;
    }
    footer .rodape img{
        width: 9%;
    }
    footer .rodape h3{
        font-size: 16px;
    }
    footer .rodape p{
        font-size: 12px;
        margin-bottom: 40px;
    }
}
@media only screen and (min-width:650px) and (max-width: 689px){
    header{
        font-size: 14px;
    }
    nav div.logo img{
        width: 70%;
    }
        footer .rodape{
        height: 70px;
    }
    footer .rodape img{
        width: 9%;
    }
    footer .rodape h3{
        font-size: 16px;
    }
    footer .rodape p{
        font-size: 12px;
        margin-bottom: 25px;
    }
}
@media only screen and (min-width:580px) and (max-width: 650px){
    header{
        font-size: 13px;
    }
    nav div.logo img{
        width: 80%;
    }
    footer .rodape{
        height: 60px;
    }
    footer .rodape img{
        width: 9%;
        top: -10px
    }
    footer .rodape h3{
        font-size: 14px;
    }
    footer .rodape p{
        font-size: 11px;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width:420px) and (max-width: 580px){
    header{
        font-size: 12px;
    }
    nav div.logo img{
        width: 50%;
    }
    nav button.menu-toggle {
        display: block;
        width: 100px;
    }
    nav div.itens ul#lista-itens{
        position: absolute;
        margin: 0px;
        top: 70px;
        left: 0;
        width: 100%;
        height: min-content;
        background-color: #2d2d28;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    nav div.itens ul#lista-itens li{
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        margin: 1px;
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 2px;
    }
    nav div.itens ul#lista-itens li:hover{
        background-color: #1e1e1e;
    }
    nav div.itens ul#lista-itens.active{
        visibility: visible;
        opacity: 1;
    }
    footer .rodape{
        height: 40px;
    }
    footer .rodape img{
        width: 11%;
        top: -8px
    }
    footer .rodape h3{
        font-size: 12px;
        margin-bottom: 5px;
    }
    footer .rodape p{
        font-size: 11px;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 419px){
    header{
        font-size: 12px;
    }
    nav div.logo img{
        width: 70%;
    }
    nav button.menu-toggle {
        display: block;
        width: 100px;
    }
    nav div.itens ul#lista-itens{
        position: absolute;
        margin: 0px;
        top: 70px;
        left: 0;
        width: 100%;
        height: min-content;
        background-color: #2d2d28;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    nav div.itens ul#lista-itens li{
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        margin: 1px;
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 2px;
    }
    nav div.itens ul#lista-itens li:hover{
        background-color: #1e1e1e;
    }
    nav div.itens ul#lista-itens.active{
        visibility: visible;
        opacity: 1;
    }
    footer .rodape{
        height: 40px;
    }
    footer .rodape img{
        width: 15%;
        top: -8px
    }
    footer .rodape h3{
        font-size: 10px;
        margin-bottom: 5px;
    }
    footer .rodape p{
        font-size: 10px;
        text-align: center;
        margin-bottom: 25px;
    }
}