@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Krona+One&display=swap");
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100vw;
  padding: 20px 0px;
  z-index: 100;
  background-color: #000;
  min-width: 400px;
}

.nav-main {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #000;
}

.nav-main-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.nav-main-item img{
  width: 30px;
  height: auto;
}

.logo img{
  width: 120px;
  height: 40px;
}



.nav-main a{
  color: white;
  font-family: "Nunito Sans", sans-serif;
  font-weight: bold;
  text-decoration: none;
}

.nav-main a:hover{
  color: #e047b0;
}

.menu-icon,
.menu-icon-label {
  display: none;
}

.menu-icon:checked + .menu-icon-label + .nav-main .nav-main-item:not(.logo) {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 5px;
}

@media screen and (max-width: 768px) {
  .nav-main-item:not(.logo) {
    display: none;
  }

  .menu-icon-label {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    transform: translateY(-3px);
    background-color: transparent;
    font-size: 25px;
    cursor: pointer;
    color: white;

    margin: 10px 0px 0px 30px;
  }

  .menu-icon:checked + .menu-icon-label + .nav-main {
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


footer {
  min-width: 400px;
}

.footer-copyright {
  min-width: 400px;
  display: flex;
  flex-direction: column;
  color: white;
  justify-content: center;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 10px;
}

.footer-copyright span {
  margin: 0px 20px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 8px;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /*  max-width: 1000px;*/
  width: 100%;
}


.footer span {
  margin: 10px 10px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 8px;
  color: white;
}

.footer a {
  text-decoration: none;
  color: white;
}

.socmed {
  min-width: 400px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /*  max-width: 1000px;*/
  width: 100%;
}

.socmed img {
  
  height: 15px;
  margin: 0px 10px;
  margin-bottom: 10px;
}


.reserve{
  height: 80px;
}

