@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  background: linear-gradient(135deg, #f6d5f7, #fbe9d7);
  font-family: 'Press Start 2P', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background: white;
  border: 3px dashed #ff90b3;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 15px #ffb6c1;
  max-width: 400px;
}

h1 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ff3e7f;
}

#random-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

button {
  background-color: #ff90b3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ff3e7f;
}
