@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  background: radial-gradient(circle at center, #1f005c, #000000);
  color: #ffffff;
  font-family: 'Press Start 2P', cursive;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 50px;
  border-radius: 25px;
  box-shadow: 0 0 25px #ff00ff, 0 0 60px #ff00ff inset;
  width: 90%;
  max-width: 700px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
 
  font-size: 28px;
  text-shadow: 0 0 10px #fff, 0 0 20px #ff00ff;
  margin-bottom: 40px;
}

p {
  color: #ffccff;
  font-size: 14px;
  margin-bottom: 25px;
}

.difficulty-buttons button {
  padding: 15px 25px;
  font-family: 'Press Start 2P', cursive;
  font-size: 20px;
  color: #fff;
  background-color: #ff00ff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 10px #ff00ff;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.difficulty-buttons button:hover {
  background-color: #ff66ff;
  transform: scale(1.1);
}


 

 

 