/* Global Styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  background-color: white;
  color: black;
  box-sizing: border-box;
  padding: 2vh 2vw;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 90vw;
  width: 90%; /* Keeps some margin on smaller screens */
  text-align: center;
  padding: 1vh 1vw; /* Dynamic padding */
  height: 100vh;
  margin: 3vw;
  font-size: 3vw; /* Adjust font size based on width */
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5vw; /* Scalable headings */
  margin-block-start: 0em;
  margin-block-end: 0em;
}

/* Buttons */
.btn-solid {
  padding: 1vh 2vw;
  font-weight: bold;
  border-radius: 0.6vw;
  border: 1px solid black;
  background-color: black;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 2vw;
}

.btn-solid:active {
  background-color: #333;
}

.btn-text {
  font-weight: bold;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  padding: 0;
  font-size: 2vw;
}

/* Links */
a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

a:hover {
  text-decoration: none;
}

/* Position header to top right */
.header {
  position: absolute;
  top: 2vw;
  right: 2vw;
  font-size: 3vw;
}

/* Input styling */
.email-input {
  padding: 1vh;
  border-radius: 0.6vw;
  border: 1px solid #ccc;
  width: 80%;
  max-width: 80vw;
  margin-bottom: 2vh;
  font-size: 3vw;
}

/* Footer stays pinned near bottom */
.footer {
  position: fixed;
  bottom: 2vw;
  width: 100%;
  text-align: center;
  font-family: sans-serif;
  font-size: 2vw
  margin: 2vw
}

