@import url("https://fonts.googleapis.com/css2?family=Pirata+One&family=Rubik+Wet+Paint&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&display=swap");
h1, h2, h3, h4, h5, h6, p, a {
  color: white;
}

p, a {
  font-family: League Gothic, sans-serif;
  font-size: 33px;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("../../photos/background.webp");
  background-repeat: repeat;
  overflow-y: scroll;
}

.ImagerHeader {
  position: relative;
}

#main-content {
  padding: 0 0 15px 0;
}

#container {
  position: relative;
  margin: auto auto 20px auto;
  width: 60%;
  height: auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px 10px 10px 10px;
  background-color: rgb(27, 27, 27);
  box-shadow: inset 0px 0px 14px 3px #000;
  border: 1px solid #000;
}

.box-content {
  box-shadow: inset 0 0 10px #000;
  box-sizing: border-box;
  background-color: rgba(30, 25, 25, 0.63);
  padding: 10px;
  text-align: center;
  height: 90%;
}

#footer-box {
  padding: 15px;
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: rgb(27, 27, 27);
  border: 1px solid #000;
}
#footer-box p {
  font-size: 1.5em;
  margin: auto;
  padding: 0;
  text-align: center;
  grid-column: 1/3;
  grid-row: 5/6;
}

.topTitle {
  text-shadow: 0 0 18px #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 25px 0 10px 0px;
  margin: 0;
  font-family: "Pirata One", sans-serif;
  font-size: 5vw;
}

.room {
  border-radius: 17px 17px 0 0;
  height: 531px;
}

@media (max-width: 768px) {
  p, a {
    font-size: 36px;
  }
  .topTitle {
    text-shadow: 0 0 18px #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 25px 0 10px 0px;
    margin: 0;
    font-family: "Pirata One", sans-serif;
    font-size: 10vw;
  }
  #container {
    margin-top: 89px;
    width: 90%;
    padding: 0px;
    margin: 0 auto 20px auto;
    border: 0;
  }
  .room {
    border-radius: 17px 17px 0 0;
    height: 236px;
  }
}
.game-name {
  font-size: 2.5em;
  margin: 0 0 0 0;
  padding: 15px 0 0 0;
  color: white;
  text-align: center;
}
.game-name a {
  font-family: Pirata One, sans-serif;
  color: white;
  text-decoration: none;
  text-shadow: 12px -2px 9px #1d4700;
}

#nav {
  position: relative;
  padding: 5rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
#nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background-color: rgb(27, 27, 27);
  z-index: 1000;
  border-radius: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  height: 44px;
}
#nav.sticky img {
  transform: translate(-50%, -25%);
  width: 135px;
  height: 135px;
  transition: all 0.3s ease-in-out;
}
#nav.sticky img:hover {
  animation: stickyRotate60 3.5s infinite linear;
}
#nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 25px 25px 0 0;
  background-color: rgb(27, 27, 27);
  transition: all 0.3s ease-in-out;
}
.sticky #nav {
  border-radius: 0;
}

#nav a {
  display: block;
  box-sizing: border-box;
  padding: 20px 20px;
  text-align: center;
  width: 165px;
  text-decoration: none;
  color: white;
  font-family: Pirata One, sans-serif;
  font-size: 1.6em;
}

#nav img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  transform-origin: center;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
#nav img:hover {
  animation: rotate60 3.5s infinite linear;
}

#logo-home a {
  padding: 0;
}

#nav ul a:hover {
  background-color: #045600;
  transition: 0.3s;
}

ul li:first-child a:hover {
  background-color: #045600;
  transition: 0.3s;
}
ul li:first-child a {
  border-radius: 25px 0 0 0;
}
ul li:last-child a:hover {
  background-color: #045600;
  transition: 0.3s;
}
ul li:last-child a {
  border-radius: 0 25px 0 0;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: rgb(27, 27, 27);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: max-height 0.5s ease-in-out;
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown:hover .dropdown-content {
  display: block;
  max-height: 300px;
}

.dropdown:hover #dropdown-icon {
  transform: rotate(180deg);
}

#dropdown-icon {
  padding: 5px;
  fill: white;
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1100;
}
.burger-menu .bar {
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: transform 0.3s ease;
}
.burger-menu.open {
  transform: rotate(45deg);
}
.burger-menu.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(90deg);
}
.burger-menu.open .bar:nth-child(2) {
  opacity: 0;
}
.burger-menu.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(90deg);
}

@keyframes rotate60 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(20deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(-20deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes stickyRotate60 {
  0% {
    transform: translate(-50%, -26%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -26%) rotate(20deg);
  }
  50% {
    transform: translate(-50%, -26%) rotate(0deg);
  }
  75% {
    transform: translate(-50%, -26%) rotate(-20deg);
  }
  100% {
    transform: translate(-50%, -26%) rotate(0deg);
  }
}
@media (max-width: 1400px) {
  #nav img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  #nav {
    background-color: rgb(27, 27, 27);
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: rgb(27, 27, 27);
    z-index: 1000;
    border-radius: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    height: 44px;
  }
  #nav li {
    width: 100%;
  }
  #nav li a {
    width: 100%;
  }
  #nav .dropdown-content {
    width: 100% !important;
  }
  #nav .dropdown-content a {
    width: 100%;
    text-align: center;
  }
  #nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgb(27, 27, 27);
    padding: 10px 0;
  }
  #nav ul.show {
    display: flex;
  }
  #logo-home {
    display: none;
  }
  #nav-links {
    z-index: 9;
  }
  ul li a {
    border-radius: 0 0 0 0 !important;
  }
}/*# sourceMappingURL=nav.css.map */