@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    
}

.main{
    width: 100%;
    height: 90vh;
    background-color: #AEEBB4;
    color:#101E57;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    
}
.main h1{
    font-size: 5rem;
    font-family: "Michroma", sans-serif;
}
footer{
    height: 10vh;
    width: 100%;
    background-color: #101E57;
    color: #AEEBB4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}