@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&family=Sixtyfour&family=Tiny5&display=swap");

/* font-family: 'Pixelify Sans', cursive; */
/* font-family: 'Sixtyfour', cursive; */
/* font-family: 'Tiny5', cursive; */

* {
  font-family: "Pixelify Sans", cursive;
}

.special {
  font-family: "Sixtyfour", cursive;
}

.title {
  font-family: "Tiny5", cursive;
}

.text-dark {
  color: #30332c;
}

.bg-dark {
  background-color: #30332c;
}

.nav-link {
  transition: all 0.3s ease;
}

.nav-link:hover {
  animation: headShake 1s;
}

.header {
  grid-template-columns: 65% 35%;
}

.link {
  background-position-x: 80%;
  background-position-y: 50%;
  background-image: url(image/bg.png);
}
.button {
  border: #30332c 2px solid;
  box-shadow: #30332c -4px 4px 0;
}

.button:hover {
  transform: translateY(4px);
  box-shadow: #30332c -4px 4px 0;
}

.window {
  box-shadow: #30332c -6px 6px 0;
}

.game {
  width: 100%;
  height: 200px;
  background-color: #f4f4f4;
  border: 2px solid #000;
  position: relative;
  overflow: hidden;
}
.game-button {
  background: #bf0000;
  border-bottom: 6px inset rgba(0, 0, 0, 0.5);
  border-left: 6px inset rgba(0, 0, 0, 0.5);
  border-right: 6px inset rgba(255, 255, 255, 0.5);
  border-top: 6px inset rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  color: #fff6ed;
  cursor: pointer;
  display: inline-block;
  margin: 1rem;
  min-width: 200px;
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: uppercase;
  width: auto;
}

.game-button:hover {
  transform: translateY(4px);
}

canvas {
  background-image: url("image/space.png");
  background-size: 300px;
}

@media screen and (max-width: 488px) {
     
    .pause {
     display: none;
    }
} 
@media screen and (max-width: 767px) {
  .header {
    grid-template-columns: 100%;
  }
  .link {
    background-position-x: 50%;
  }
}


@media screen and (max-width: 388px) {
  .sale-wrap {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .sale-wrap .special {
  text-align: center;
  }
}