* {
  font-family: Minecraftia;
  text-shadow: 3px 3px #4C4C4C;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  gap: 15px;
}

body {
  color: #fff;
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/bg.png);
  image-rendering: pixelated;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.links {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
}

button {
  width: 100%;
}

@media screen and (orientation: portrait) and ((pointer:none) or (pointer:coarse)) {
  * {
    text-shadow: 9px 9px #4C4C4C !important;
    gap: 30px !important;
  }
  h1 {
    font-size: 64px;
  }
  .links {
    width: 100% !important;
  }
  button {
    width: 90% !important;
    font-size: 48px !important;
    border-width: 9px !important;
    border-bottom-width: 12px !important;
    outline-width: 6px !important;
  }
  button::before {
    bottom: -12px !important;
    left: -9px !important;
    width: 9px !important;
    height: 12px !important;
  }
  button::after {
    top: -9px !important;
    right: -9px !important;
    width: 9px !important;
    height: 9px !important;
  }
  #count {
    display: none !important;
  }
}