* {
    user-select: none;
    -webkit-user-drag: none;
}

html {
    margin: 0;
    padding: 0;
    
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;

    width: 100vw;
    min-height: 100vh;

    overflow: hidden;
}

a {
    color: #3e69d6;
    text-decoration: none;
}

a:visited {
    color: #365cbe;
}

nav {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: 100%;

    background-color: white;
    box-shadow: 0 0 8px gray;
}

.aoi-logo {
    height: 80px;
}

.nav-link {
    display: block;

    height: max-content;
    margin: 27px 20px;

    color: black;

    font-size: 18px;
    text-shadow: 0 0 4px #b5b5b5;
    text-decoration: none;

    transition: all 500ms cubic-bezier(.3,0,0,1);
}

.nav-link:visited {
    color: black;
}

.nav-link:hover {
    color: #3e69d6;
    transform: scale(1.2);
    text-shadow: 0 0 10px #6a8ce2;
}

#section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-image: url(/img/homeimg.jpg);
    background-position: center;
    background-size: cover;

    min-height: 100vh;
    width: 100vw;
}

.join-btn {
    
    display: block;
    width: fit-content;

    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(1px);

    border: 1px solid rgba(255, 255, 255, 0.225);
    border-radius: 8px;

    padding: 15px;
    margin: 30px auto;


    font-weight: 600;
    
    transition: all 500ms;

    color: white;

}

.join-btn:hover {
    color: #bacdff;
    transform: scale(1.25);
}

.join-btn:visited {
    color: white;
}

@media only screen and (max-width: 100vw) {
    .hide-on-phone {
        display: none;
    }
}

footer {
    color: #60719a;
    text-align: center;
}

footer a {
    color: #486096;
    text-decoration: none;
}

footer a:visited {
    color: #4d73cc;
}
