
/* header for every html files*/

/* Logo decoration */
.logo {
  font-family: 'Major Mono Display', sans-serif;
  cursor: pointer;
}

.nav {
  height: 50px;
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  color: rgb(0, 0, 0);
  padding: 10px 10px 10px 10px;
  margin-left: 30px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  margin-top: 30px;
  margin-right: 40px;
  display: inline;
  float: right;
  font-size: 20px;
  text-align: right;
}
.nav > .nav-links > a {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #000000;
}

.nav > .nav-links > a:hover {
  color: #f65454;
}

.nav > #nav-check {
  display: none;
}

@media (max-width:900px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 30px;
  }
  .nav > .nav-btn > label {
    background-color:#444444;
    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 #f0f5f9;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #707070d3;
    height: 0px;
    transition: all 0.2s ease-in;
    overflow-y: hidden;
    top: 70px;
    left: 0;
  }
  .nav > .nav-links > a {
    font-size: 110%;
    font-weight: 500;
    display: block;
    padding-right: 30px;
    color:#f0f5f9;
    width: 100%;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: auto;
    overflow-y: auto;
  }
}
@media (max-width:600px){
  .nav > .nav-header > .nav-title {
    font-size: 70%;
    display: inline-block;
    color: rgb(0, 0, 0);
    padding: 0 10px 10px 10px;
    margin: 30px 0 0 10px;
  }
}