@font-face {
  font-family: "W95FA";
  src: url("assets/font/W95FA.otf.otf") format("truetype");
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

input,
label {
  -webkit-user-select: auto;
  user-select: auto;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  background-color: #000;
}

body {
  background: url("../assets/img/bg.png") no-repeat center center;
  font-family: "W95FA", sans-serif;
  background-size: cover;
  touch-action: pan-y;
}

.menu-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.menu-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
}

.menu-areas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu-area {
  position: absolute;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
}

.card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
}

.sticker {
  position: absolute;
  bottom: 55%;
  right: -5%;
  width: 35%;
  height: auto;
}

@media (max-width: 480px) {
  body {
    background: url("../assets/img/bg2.png") no-repeat center center;
    background-size: cover;
  }

  .card {
    content: url("../assets/img/Card2.png");
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
  }

  .sticker {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 40%;
    height: auto;
  }
}
