/* Shared global styles for the site */
body {
    /*font-family: Arial, sans-serif;*/
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    background: linear-gradient(0deg, #eef9ff, #d2effe);;
    margin: 0;
    min-height: 100vh;
}

button{
    font-family: "Nunito", sans-serif;
}

h1 { 
    color: #ffffff;
    background: #57aba1;
    padding: 13px 23px;
    border-radius: 50px;
    border: 6px solid white;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.5em;
}

p { color: #666; }

.container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 130px);
}

#main-menu{
    display:none; flex-direction:column; align-items:center;
    height: 100%;
    justify-content: space-evenly;
    padding: 20px;
}

.menu-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 5vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.menu-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
    min-width: 200px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px 23px;
    border: 5px solid white;
}
footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: -1;
}
.social-icons{
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 15px 15px 8px;
    background: #b2e6ff;
    box-shadow: 0 -2px 5px #76b5d754;
    background-image: linear-gradient(0deg, #48ade3, transparent);
}
.social-icons img{
    width:35px; height:35px;
}
