/*Add background color #25283d to 'top' depending on the page and might need to adjust inset or hsl value based on page*/
:root {
  --color_aqua: #01fedf;
  --bg_white: #eff1ff;
  --bg_darkblue: #25283d;
}
@font-face {
  font-family: GilroyMedium;
  src: url(fonts/Gilroy-Medium.ttf);
}
@font-face {
  font-family: GilroyBold;
  src: url(fonts/Gilroy-Bold.ttf);
}
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg_darkblue);
    position: relative;
    z-index: 2;
    padding: 1vw calc(8vw + 3px);
  }
.notdropdown:hover{
    color: var(--color_aqua);
}
a{
  text-decoration: none;
  color: white;
}
.other-links{
    width: 50%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
}
.get-started-button{
  background-color: var(--color_aqua);
  color: var(--bg_darkblue);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 12px;
  font-size: 18px;
  font-family: GilroyMedium;
}
.dropdown{
    display: none;
    font-size: 24px;
  }
.dropdown-links{
    display: none;
}
.dropdown-links a{
    display: block;
}
.logo_link img{
  object-fit: contain;
  width: 10vw;
}
@media only screen and (max-width: 1000px) {
    .logo_link{
      margin-left: 10px;
    } 
    .logo_link img{
      width: 20vw;
      object-fit: contain;
    }
    .other-links{
        display: inline-block;
      }
      .dropdown{
        float: right;
      }
      #button1{
        float: right;
      }
      .dropdown{
        display: block;
        order: 2;
      }
      .dropbtn{
        cursor: pointer;
      }
      .notdropdown{
        display: none;
      }
      #button1{
        order: 1;
        margin-right: 5vw;
      }
      .dropdown-links {
        height: 400vh;
        position: fixed;
        text-align: center;
        background: hsl(0 0% 100% / 0.1);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        inset: -2vw -4% 0 60%;
        font-size: 24px;
        z-index: 999;
      }
      .dropdown-links a{
        margin: 6vh;
      }
      .dropdown-links{
        padding-top: 7vw;
      }
      .close_button{
        margin-top: -5vw;
        margin-left: 30vw;
        margin-right: 3vw;
        cursor: pointer;
      }
      .get-started-button{
        font-size: 2vw;
        border-radius: 1.2vw;
      }
}
@media only screen and (max-width: 600px){
    .logo_link{
      width: 20%;
      height: auto;
    }
    .dropdown{
      font-size: 4vw;
    }
    .dropdown-links{
      font-size: 4vw;
    }
    #button1{
      font-size: 3vw;
      padding: 2%;
      border-radius: 2vw;
      width: 20vw;
    }
    #button1{
        border-radius: 1.5vw;
        height: 6vw;
      }
      .dropbtn{
        margin-top: 1vw;
        width: 4vw;
        height: 4vw;
      }
      .close_button{
        width: 5vw;
        height: 5vw;
      }
    }