body {
  background-color: white; /* White background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: "Courier New", monospace; /* Monospaced font */
}

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

.logo {
  width: auto; /* Maintain original aspect ratio */
  height: auto; /* Maintain original aspect ratio */
  max-width: 100%; /* Ensure it doesn't overflow the screen */
}

p {
  margin-top: 20px; /* Space between the image and the text */
}

a {
  color: black; /* Set link color to black */
  font-weight: bold; /* Make links bold */
  text-decoration: none; /* Optional: removes underline from links */
}

a:hover {
  text-decoration: underline; /* Optional: underline on hover for better usability */
}
