body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('ssbg.png'); /* Background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Roboto', sans-serif; /* Specify the new font family */
}

.container {
  text-align: center;
}

.text {
  font-size: 24px; /* Increased font size */
  margin-bottom: 50px;
  color: rgb(255, 255, 255); /* Text color */
  white-space: pre-line; /* Preserve line breaks */
}

.under-construction {
  color: white; /* Text color */
}

.logo {
  width: 300px; /* Adjust as needed */
  height: 300px; /* Adjust as needed */
}

.button {
  padding: 10px 20px;
  font-size: 24px;
  background-color: #ff0000; /* Bright red color */
  color: aliceblue; /* Text color */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none; /* Remove underline */
}

.button:hover {
  background-color:aliceblue;
  color:#000000 /* Darker shade of red on hover */
}
