
body {
  font-family: 'Arial', sans-serif;
  background-color: #8a2eb2;
  color: #fff;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  margin: 20px 0;
  line-height: 1.5;
}

img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

button {
  background-color: #123456;
  border: none;
  color: white;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1em;
  margin: 10px 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

button:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

.account-button {
  background-color: #2196F3;
}

.account-button:hover {
  background-color: #0b7dda;
}

#planet-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}