/* Make sure the page fills the screen with white background */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

/* Center contents vertically & horizontally */
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Logo responsive styling */
.logo {
  max-width: 80%;
  height: auto;
}

/* Title styling */
.title {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #000;
}