
body {
  background-color: #5c6b73; 
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Center the content */
.container {
  text-align: center;
}

/* Style the title */
h1 {
  font-size: 3rem;
  color: #e0fbfc;
  margin-bottom: 20px;
}

/* Style the links/buttons */
.links button {
  background-color: #253237;
  color: #e0fbfc;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s, color 0.3s;
}

/* Add hover effect to buttons */
.links button:hover {
  background-color: #e0fbfc;
  color: #253237;
}