
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;
}

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;
    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;
}

.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;
    }

}
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.text-sec{
    max-width: 600px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,.1);    
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    text-align: center;
}
h1 {
    font-size: xx-large;
    font-weight: 600;
    color: #e6e6e6;
    margin-top: 50px;
    margin-bottom: 0px;
}

h2 {
    font-size: xx-large;
    font-weight: 600;
    padding-right: 30px;
    color: #333333;
    text-decoration: underline;
}
.box, .platforms {
    background-image: radial-gradient(#d7e2ff 1px, #ffffff 1px);
    background-size: 20px 20px;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;

}
.subbox {
    background: rgba(63,105,215,0.2);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(63,105,215,1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
ul {
    padding-left: 35px;
}
li {
    margin-bottom: 10px;
}
#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;
}

::-webkit-scrollbar {
    width: 8px; 
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  