@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
/*
color palette
white shade  #e6e7e2
green shade  #4c5f19
pink shade  #f69a69
yellow shade  #f6c101
grey  #717e82

*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: 'Lato', sans-serif;
  color:#010203;
  background-color: #e6e7e2;
  background: url(../imgs/b0.jpg) no-repeat center center fixed;
  background-size: cover;

}
h1{
  font-family: 'Grenze Gotisch', cursive;
  letter-spacing: 3px;
  font-size: 3em;
  color: #010203;
  text-decoration: underline;
  text-align: center;
}
.nav {
  height: 70px;
  width: 100%;
  background-color:  #010203 ;
  position: relative;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  color: #e6e7e2;
  
}
.nav-title{
  font-family: 'Grenze Gotisch', cursive;
  font-size: 3em;
  margin-left: 15%;
  letter-spacing: 3px;
  }
.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 18px;
  margin-right: 15%;
}
.nav-links .current{
  background-color: #f98b88;
}
.nav > .nav-links > a {
  letter-spacing: 2px;
  display: inline-block;
  padding: 13px 10px 13px 10px;
  margin-right: 20px;
  text-decoration: none;
  color: #e6e7e2;
  margin-top: 10px;
}

.nav > .nav-links > a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.nav > #nav-check {
  display: none;
}

@media screen and (max-width: 1024px)
{
  .nav > .nav-links {
  margin-right: 7%;
}
}

@media screen and (max-width:768px) {
 
    body{
    background-image: url(../imgs/b1.jpg);
  
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
   
    padding: 13px;
    margin-top: 10px;
    margin-right: 10px;
  }
  .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:#16161d;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 70px;
    left: 0px;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
    text-align: center;
    padding-top:25px;
    padding-bottom: 25px; 
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height:270px;
    overflow-y: auto;
  }
}