* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive;
}

body {
  background-image: url("../game/assets/game_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

a {
  color: white;
}

.dev_text {
  margin-top: 10px;
}

button {
  cursor: pointer;
}

.btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  width: 100%;
  gap: 10px;
  margin-top: 20px;
}
.btns a {
  width: 100%;
}
.btns button {
  padding: 20px 40px;
  border: none;
  width: 100%;
  border-radius: 8px;
  background: #1e40af;
  color: white;
  font-size: 18px;
  transition: 0.2s ease-in-out;
}
.btns button:hover {
  outline: 1px solid white;
}
.btns button:active {
  transform: scale(0.95);
}/*# sourceMappingURL=menu.css.map */