
html {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-user-drag: none;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #1C2D5C;
    opacity: 1;
    background-image:  radial-gradient(#3B60C0 1px, transparent 1px), radial-gradient(#3B60C0 1px, #1C2D5C 1px);
    background-size: 40px 40px;
    background-position: 0 0,20px 20px;
    align-items: center;
    justify-content: center;
}

a{
    color: #3e69d6;
}

a:visited{
    color: #365cbe;
}

nav {
    z-index: 999; 
    box-shadow: 0 0 8px gray;
    position: fixed;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.aoi-logo {
    user-select: none;
    -webkit-user-drag: none;
    height: 80px;
}

.nav-link {
    display: block;
    color: black;
    text-decoration: none;
    height: max-content;
    margin: 27px 20px;
    font-size: 18px;
    text-shadow: 0 0 4px #b5b5b5;
    transition: all 0.7s cubic-bezier(.3,0,0,1);
    user-select: none;
    -webkit-user-drag: none;
}

.nav-link:visited {
    color: black;
}

.nav-link:hover {
    color: #3e69d6;
    transform: scale(1.3);
    text-shadow: 0 0 10px #6a8ce2;
}

@media only screen and (max-width: 600px) {
    .hide-on-phone {
        display: none;
    }

}
.text-sec {
    color: #e6e6ee;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 10px;

}
.container {
    max-width: 400px;
    background-color: #ffffff;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 12px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.1);
}

.text-box {
    padding: 10px;
    user-select: none;
}

.contact-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    text-decoration: none;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f9f9f9;
    border: 1px solid #dddddd;
    border-radius: 5px;
    padding: 10px 10px;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(.3,0,0,1);
    box-shadow: 0 0 0px 0px #3B60C0;

}

.contact-item:hover {
    background-color: #4b57ff;
    background-image:  radial-gradient(#d7e2ff 0.75px, transparent 0.75px), radial-gradient(#d7e2ff 0.75px, #4b57ff 0.75px);
    background-size: 30px 30px;
    background-position: 0 0,15px 15px;
    box-shadow: 0 0 10px 4px #3B60C0;

}
span, i {
    color: rgba(0, 0, 0, 1);
    transition: all 1s cubic-bezier(0,.5,.25,1);
}
.contact-item:hover span, .contact-item:hover i {
    color: #e6e6e6
}

.contact-item img {
    max-width: 24px;
    max-height: 24px;
}

#homeButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #6a8ce2;
    color: white;
    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 500ms cubic-bezier(.3,0,0,1);
}
#homeButton a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    #homeButton {
        display: block;
    }
}

#homeButton:hover {
    scale: 120%;
    background-color: #b5b5b5;
}
footer{

    color: #60719a;
    text-align: center;

}

footer a{
    color: #486096;
    text-decoration: none;
}

footer a:visited{
    color: #4d73cc;
}

