/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to left top, #3337ce, #404169);
  display: flex;
  flex-direction: column;
}

#app {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero styles */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.vision-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-top: 50px;
  color: #ccc829;
}

.vision-statement {
    font-size: 1em;
    margin-top: 10px;
    color: white;
}
  
.email-capture {
    margin-top: 10rem;
    text-align: center;
  }
  
.email-capture input {
    padding: 0.5rem;
    margin-right: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
    max-width: 100%;
}

.email-capture button {
    padding: 0.5rem 1rem;
    background-color: #42b983;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.message {
    margin-top: 1rem;
    color: #42b983;
}


  /* Responsive adjustments */
@media (max-width: 768px) {
    .footer .container {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }
  
  