*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}
nav{
    background: #072640;
    height: 100px;
    width: 100%;
    position: fixed;
    z-index: 500;
    box-shadow: 0 0 30px 2px rgba(0,0,0,0.50);
    overflow: hidden;
  }

  nav ul{
    float: left;

    margin-left: 20px;
  }
  nav ul li{
    display: inline-block;
    line-height: 100px;
    margin: 0 30px;
  }
  nav ul li a{
    color: white;
    font-size: 20px;
    padding: 10px 35px;
    border-radius: 3px;
    text-decoration: none;
  }
  nav a.active, nav a:hover{
    background: #06365e;
    transition: .5s;
  }
  .checkbtn{
    font-size: 40px;
    color: white;
    float: right;
    line-height: 100px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
    margin-top: 25px;
  }
  #check{
    display: none;
  }
.teenused{
    font-size: 3em;
    text-align: center;
    color: #000000;
    padding-top: 13%;
    font-weight: lighter;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.teenused:after{
    content:"";
    display:block;
    width: 6em;
    max-width:70%;
    border-bottom: 2px solid #023e8a;
    margin: 1em auto 0;
}
table {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5em;
    padding-bottom: 100px;
    padding-top: 50px;
}
th {
    text-align: left;
    background-color: #0096FF;
}
td, th {
    padding: 10px;
}
tr:nth-child(odd){
    background-color: rgb(243, 242, 242);
}
.info {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    padding-bottom: 100px;
    font-size: 1.5em;
    padding-bottom: 100px;
    text-align: left; 
}

.footer {
    padding-top: 100px;
    padding-bottom: 80px;
    padding-left: 5%;
    padding-right: 5%;
    background: #00374d;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
  }
  
  .footer div {
    text-align: center;
    flex-basis: 50%;
  }
  
  .contact {
    flex-basis: 100%;
    margin-top: 20px;
  }
  
  .footer div h3 {
    font-weight: 300; 
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
  
  .links a {
    display: block;
    text-decoration: none;
    color: white;
    margin-bottom: 20px;
  }
  
  .contact p {
    margin-bottom: 20px;
  }
  @media only screen and (max-width: 980px){
    .teenused{
      padding-top: 200px;
    }
    .checkbtn{
      display: block;
      margin-right: 40px;
    }
    .checkbtn i{
      font-size: 40px;
      margin-right: 20px;
    }
    nav{
      height: 90px;
    }
    nav ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #00374d;
      top: 90px;
      left: -100%;
      text-align: center;
      transition: all .5s;
      z-index:2;
      margin-right: 20px;
      margin-left: 0px;
    }
    nav ul li{
      display: block;
      margin: 100px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 25px;
    }
    nav a:hover, nav a.active{
      background: none;
      color: white;
    }
    #check:checked ~ ul{
      left: 0;
    }
    }
    @media screen and (max-width: 490px){
      table {
        font-size: 1.1em;
      }
      .info{
        font-size: 20px;
        width: 70%;
      }
      .teenused{
        font-size: 35px;
      }
      .footer{
        font-size: 12px;
      }
      .checkbtn{
        margin-right: 10px;
      }
      }
  
      @media screen and (max-width: 350px){
        table {
          font-size: 0.9em;
        }
        .info{
          font-size: 15px;
          width: 70%;
          margin-bottom: -100px;
        }
      .footer {
        display: block;
        margin-top: 100px;
      }
      .links{
        margin-bottom: 60px;
      }
      .checkbtn i{
        font-size: 30px;
      }
      nav{
        height: 80px;
      }
      nav ul{
        top: 80px;
      }
    }
    @media screen and (max-width: 300px){
      table {
        font-size: 0.7em;
      }
      .teenused{
        font-size: 20px;
      }
    }