@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);

body {
  background: #EEEEF4;
  color: #333;
  font-family: 'Roboto', sans-serif;
  /* Corrected font-family usage */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 80%;
  /* Responsive */
  width: 120px;
  /* Reduced further as requested */
  height: auto;
  margin-bottom: 20px;
}

.main-text {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  white-space: nowrap;
  /* Keep on one line if possible, or allow wrap on very small screens */
}

/* Fallback for very small screens to avoid overflow */
@media (max-width: 480px) {
  .main-text {
    white-space: normal;
  }

  /* Removed .logo width override to keep it small (120px) on mobile too */
}

.sub-text {
  font-size: 1.3rem;
  /* Enlarge a bit as requested */
  font-weight: 300;
  margin-top: 40px;
  /* "Larger gap" */
  color: #666;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #ddd;
  /* Visual separation */
  background-color: #f9f9f9;
  /* Subtle background difference */
}
