@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Mea+Culpa&family=Meie+Script&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.body{
    margin: auto;
    min-width: 360px;
    height: 90vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    background-color: #eee;
    justify-content: space-between;
}
header{
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("/assets/images/banner.png");
}
header nav{
    width: 160px;
    height: 160px;
    border-radius: 100%;
    margin-bottom: -120px;
}
header nav figure img{
    width: 100%;
}
main{
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
main span{
    margin-top: 100px;
    text-align: center;
}
main span h1{
    text-transform: uppercase;
    font-weight: 900;
    color: #9F778D;
    font-family: "Lato", sans-serif;
}
main span h3{
    color: #000;
}
main nav{
    margin: 20px;
    display: flex;
    flex-direction: column;
}
main nav a{
    color: #F8E5E3;
    width: 200px;
    padding: 10px;
    margin: 10px;
    display: flex;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background-color: #2D6B7B;
    text-decoration: none;
    text-transform: uppercase;
}
main nav a:hover{
    color: #FAF1AA;
    transition-duration: 1s;
    background-color: #838042
}
main nav a i{
    font-size: 1.5rem;
    margin-right: 20px;
}
main label{
    margin-bottom: 50px;
    color: #000;
}
footer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: black;
}
footer p{
    color: #fff;
}

@media(max-width: 600px){
    .body{
        width: 100vw;
        height: 100vh;
    }
}


