/* ----------------- BODY ----------------- */
body {
  background-image: url('../images/big-chungus.png');
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #fdf6e3; /* soft cornsilk */
  background-attachment: fixed;
  margin: 0;
  min-height: 100vh;
  font-family: 'Press Start 2P', cursive; /* retro pixel font */
  font-size: 20px;
  color: #333; /* dark text for readability */
  text-align: center;
  overflow: hidden;
}

/* ----------------- HEADINGS & PARAGRAPHS ----------------- */
h1,
p {
  margin: 20px 0;
  color: #222;
  text-shadow: 1px 1px #aaa; /* subtle retro shadow */
}

/* ----------------- BUTTONS ----------------- */
.btn {
  width: 150px;
  height: 50px;
  font-size: 18px;
  font-family: 'Press Start 2P', cursive;
  color: #fff;
  background: linear-gradient(
    135deg,
    #ff7f50,
    #1e90ff
  ); /* subtle retro gradient */
  border: 2px solid #444;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover effect */
#blackjack:hover,
#buttonclicker:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.7), 0 0 10px rgba(255, 127, 80, 0.7);
}

/* ----------------- OPTIONAL: CLASS BUTTONS ----------------- */
.game-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
