* {
    box-sizing: border-box;
  }

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    background: #181A1E;
    color: white;
    height: 100vh;
}
a{
    text-decoration: none;
}
/* Header */
    header{
        height: 96px;
    }
  .nav {
    height: 50px;
    width: 100%;
    position: relative;
  }
  
  .nav > .nav-header {
    display: inline;
  }
  
  .nav > .nav-header > .nav-title {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    padding: 10px;
    margin: 20px 10px;
  }
  
  .nav > .nav-btn {
    display: none;
  }
  
  .nav > .nav-links {
    display: inline;
    float: right;
    font-size: 18px;
    margin-left: auto;
  }
  
  .nav > .nav-links > a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    text-decoration: none;
    color: #efefef;
  }
  .headerLogin{
      border: 1px solid white;
      color: white;
      border-radius: 10px;
      width: 120px;
      text-align: center;
      margin: 20px 10px;
  }
  .headerLogin:hover{
      color: black !important;
    transition: .5s;
    background-color: white;
  }
  #login{
      margin-left: 50px;
  }
  
  .nav > .nav-links > a:hover {
    text-shadow: -3px -3px 25px rgb(226, 219, 219);
    transition: .5s;

  }
  
  .nav > #nav-check {
    display: none;
  }

  
  @media (max-width:850px) {
       
    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 0px;
      margin-top: 20px;
    }
    .nav > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding: 13px;
    }
    .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
      background-color: rgba(0, 0, 0, 0.3);
    }
    .nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
    }
    .nav > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color: #333;
      height: 0px;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 50px;
      left: 0px;
    }
    .nav > .nav-links > a {
      display: block;
      width: 95%;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
      height: calc(100vh - 50px);
      overflow-y: auto;
      margin-top: 40px;
    } .headerLogin{
        border: 1px solid white;
        color: white;
        border-radius: 10px;
        width: 100px;
        text-align: center;
        margin: 20px 10px;
    }#login{
        margin-left: 10px;
    }
  }

  /* mainSection */

  .mainSection{
     background: url("../images/bg2.png");
     background-repeat: no-repeat;
     background-size: cover;
     display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
     height: 85vh;
  }
.mainSection h2{
    font-size: 4rem ;
    text-align: center;
    margin-bottom: 4%;
}
.mainSection h4{
    margin-bottom: 1.5%;
    text-align: center;

}
.contain{
    width: 55%;
}
.inputFirst{
    width: 81%;
    padding: 12px 30px;
    border: 2px solid white;
    
    outline: none;
    border-radius: 15px 0 0 15px;
    color: rgb(133, 133, 133);
    margin-bottom: 3%;
}


.inputSecond{
    width: 17%;
    padding: 12px 15px;
    border: 2px solid white;
    outline: none;
    background: transparent;
    border-radius: 0 15px  15px 0;
    color: rgb(133, 133, 133);
    margin-left: -5px;
}
.inputContainer{
    display: flex;
    width: 45%;
    margin-bottom: 1%;
}
.inputContainer button{
    background: transparent;
    border: 2px solid white;
    color: white;
    margin: 4% auto 0; 
    padding: 1.1875rem 4.2rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.4rem;
    
}
.inputContainer button:hover{
    background: white;
    color: black;

}

.totalUrl{
    text-align: center;
    margin-top: 15px;
}

.footer{
    background: #181A1E;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.footer p{
    padding: 8px 0 5px;
    text-align: center;
}
.footer a{
    color: white;
    border-bottom: 1px solid white;
}
