*{
    box-sizing: border-box;
    font-family: Montserrat,Sans-serif;
    --Color1: #1C274C;
    --Color2: white;
    font-size: 18px;
  }
  
  @media only screen and (max-width: 850px){
    #tiers{
      flex-direction: column;
      align-items: center
    }
  
  }
  
  @media only screen and (max-width: 500px){
    #header{
      display:flex;
      flex-direction: column;
      align-items: center;
      position: initial;
      top: auto
      
    }
    #nav-bar{
      display:flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      margin-bottom: 10px;
      width: 200px
    }
    #video{
    margin-top: 300px
  }
  
  }
  
  
  body{
    margin: 0;
    color: var(--Color2);
    height: 100vh;
    background: linear-gradient(135deg, #1C274C, #2a3a66);
  
  }
    
  h2{
    color: var(--Color1)
  }
  #header{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: white
  }
  
  #header-img{
    height: 50px
  }
  
  .nav-link{
    width: 100%;
    color: var(--Color1);
    text-decoration:none;
    text-align: center;
    border: 1px solid var(--Color1);
    padding: 5px
  }
  .nav-link:hover{
   color: var(--Color2);
   background-color: var(--Color1)
  }
  
  #Get_Started{
    display: flex;
    flex-direction: column;
    align-items: center;
  
  }
  iframe{
    margin-top: 100px;
    aspect-ratio: 560/315;
    width: 90%;
    max-width:600px;
    border: none;
    
  }
  #form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px 0px
  }
  hr{
    width: 50vw;
    margin-bottom: 20px
  }
  #submit{
    margin-top: 1rem;
    color: var(--Color2);
    font-weight: bold;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid white;
    font-size: 2rem
  }
  #submit:hover{
    background-color: white;
    color: black;
  }
  
  #email{
    border-radius: 10px;
    font-size: 1.5rem;
    background-color: transparent;
    border: 1px solid gray;
    color: var(--Color2);
  }
  /* Features */
  
  #Features{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #12182F;
    gap: 10px
  }
  .feature{
    display: flex;
    border: 1px solid gold;
    border-radius: 10px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    max-width: 600px;
  }
  .feature img{
   width: 50px;
   height: 50px;
   background-color: var(--Color2);
   border-radius: 10px;
   margin-right: 1rem;
  }
  /* Pricing*/
  
  #tiers{
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  #pricing{
    background-color: #12182F
  }
  #Pricing h1{
    text-align: center;
    margin-top: 100px;
  }
  
  .tier{
    border: 1px solid white;
    border-radius: 20px;
    width: 30%;
    min-width: 300px;
    max-width: 300px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    height: 350px;
    background-color: #12182F;
  }
  
  
  .tier h3{
    text-align:center;
  }
  .tier ul, li{
    padding:0 25px;
    margin-top: 10px;
    list-style: none;
    font-size: .7rem
  }
  
  
  button{
    margin-top: auto;
    margin-bottom: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
    border: none;
    border-radius: 5px;
    height: 30px
  }
  button:hover{
    background-color: black;
    color: white
  }
  
  /*Footer */
  
  footer p{
    text-align: center;
    margin-top: 100px;
    padding: 40px;
    background-color: #12182F
  }