/* Reset default styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* Full viewport height */
  width: 100vw;
  /* Full viewport width */
  background-color: #f4f4f4;
  /* Light gray background */
}

.logo {
  max-width: 100%;
  /* Scale logo for smaller screens */
  max-height: 100%;
  /* Prevent logo from overflowing */
  width: auto;
  height: auto;
}

.tagline {
  margin-top: 3em;
  margin-left: 1em;
  font-size: 1.5rem;
  /* Adjust size for visibility */
  color: #1A5FB4;
  /* Dark gray for contrast */
  font-weight: 400;
  /* Regular weight */
}