* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  background-image: url("assets/menu/background.png");
  background-size: cover;
  background-position: center;
}

#menu-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#menu-title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: 90%;
}

#play-button {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 25px 80px;
  font-size: 32px;
  font-weight: bold;
  border: none;
  border-radius: 16px;
  background-color: #ff5fa2;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#play-button.hovered {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 25px rgba(255, 95, 162, 0.9);
}