/* 
  This affects all templates. 
  Only update this css file if intending to apply universal styling to all templates
 */

 html {
  font-family: 'Codystar', cursive;
font-family: 'Victor Mono', monospace;
}

.lock {
  background-position: center;
  text-align:center;
  margin:auto;
  width:400px;
  height:120px;
  overflow: hidden;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

footer {
  color: rgb(255, 255, 255);
  border-radius: 20px;
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
  flex-wrap: wrap;
  bottom: 0px;
}

.footerDiv {
  margin: 10px;
  width: 30%;
  min-width: 360px;
  text-align: center;
  font-size: 100%;
  bottom: 0px;
}

.darkmode-toggle {
  width: 62.5px;
  height: 25px;
  position: relative;
  display: inline-block;
  background: #ebebeb;
  border-radius: 100px;
  box-shadow: inset 0px 0.625px 1.875px rgba(0, 0, 0, 0.4), inset 0px -0.625px 1.875px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
}
.darkmode-toggle:after {
  content: "";
  width: 22.5px;
  height: 22.5px;
  position: absolute;
  top: 1.25px;
  left: 1.25px;
  background: linear-gradient(180deg, #5a647b, #5a647bc0);
  border-radius: 22.5px;
  box-shadow: 0px 0.625px 1.25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

#darkmode-toggle {
  width: 0;
  height: 0;
  visibility: hidden;
}
#darkmode-toggle:checked + .darkmode-toggle {
  background: #242424;
}
#darkmode-toggle:checked + .darkmode-toggle:after {
  left: 61.25px;
  transform: translateX(-100%);
  background: linear-gradient(180deg, #4e433b, #4e433bc0);
}
.darkmode-toggle:active:after {
  width: 32.5px;
}

@media only screen and (max-width: 414px) {
  .banner {
    padding: 3%;
  }
  .webFooter footer {
    width: 90%;
  }
}


.button {
  display: inline-block;
  outline: none;
  cursor: pointer;
  padding: 0 16px;
  background-color: #ffff;
  border-radius: 0.25rem;
  color: #5a647bc0;
  font-size: 13px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  text-decoration:none;
  background-color: #5a647b;  
  color: #ffff
}
  .button:hover {
      color: #5a647b;  
      background-color: #ffff
  } 




  nav{
    height: 80px;
    width: 100%;
  }


  .darkmode nav{
    background-color: black;
    background: black;
  }

  label.logo{
    color: #ebebeb;
    font-size: 60px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
    text-align: left;
    padding-left: 0%;
    font-family: 'Bacasime Antique', serif;
    
  }

  .darkmode label.logo {
    color: #ffffff;
    font-size: 50px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  } 

  nav ul{
    float: right;
    margin-right: 20px;
  }
  nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
  }
  a.active,a:hover{
    background: #ffffff;
    transition: .5s;
  }
  .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  @media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    a:hover,a.active{
      background: none;
      color: #ffffff;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }





