@import url("https://cdn.jsdelivr.net/npm/galmuri@latest/dist/galmuri.css");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
.hide {
  display: none !important;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../img/bg/bg-4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  font-family: "Galmuri9", "VT323";
  color: #181818;
  text-shadow: -1px 0px #fff, 0px 1px #fff, 1px 0px #fff, 0px -1px #fff;
  text-align: center;
  width: 100vw;
  height: 100vh;
}

.container-sm {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 516px;
  height: 100vh;
  padding: 0, 0;
}
.container-sm .status-bar {
  height: 10px;
  width: 100%;
}
.container-sm header {
  position: relative;
  display: flex;
  border: 3px solid black;
  align-items: center;
  height: 130px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.container-sm header .header-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.container-sm header .home,
.container-sm header .bar {
  width: 30px;
  height: 30px;
  transition: 0.2s;
}
.container-sm header .home:hover,
.container-sm header .bar:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.container-sm header .menu {
  position: absolute;
  top: 100px;
  left: 100%;
  transform: translateX(-205px);
  width: 200px;
  z-index: 1;
  border: 3px solid black;
  padding: 20px 10px;
  background-color: rgba(255, 255, 255, 0.8);
}
.container-sm header .menu a {
  color: black;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
.container-sm header .menu a:hover {
  cursor: pointer;
  text-decoration: underline;
}
.container-sm header .menu a:last-child {
  margin-bottom: 0px;
}
.container-sm header .title {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 0;
}
.container-sm .content {
  position: relative;
  width: 100%;
  height: calc(100vh - 10px - 130px - 64px);
  background-color: rgba(255, 255, 255, 0.5);
  border: 3px solid black;
  overflow: hidden;
}
.container-sm .content-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}
.container-sm .aboutGame {
  margin: 0;
  font-size: 18px;
  line-height: 33px;
  font-weight: bold;
}
.container-sm .play {
  width: 150px;
  transition: 0.2s;
}
.container-sm .play:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.container-sm footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
}
.container-sm footer span {
  text-shadow: -1px 0px #181818, 0px 1px #181818, 1px 0px #181818, 0px -1px #181818;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
}
.container-sm canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Tablet */
@media screen and (max-width: 390px) {
  .content-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
  }
  .thumbnail {
    width: 50%;
  }
  .play {
    width: 70%;
    transition: 0.2s;
  }
  .play:hover {
    cursor: pointer;
    transform: scale(1.1);
  }
}/*# sourceMappingURL=style.css.map */