body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
  background-color: #f8f9fa;
}

h1 {
  font-size: 4.0625rem;
  font-family: Montserrat, sans-serif !important;
  text-transform: none;
  font-weight: 100;
  margin: 0;
  padding: 0;
  text-align: center;
  color: inherit;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}

h2 {
  font-size: 2.3rem;
  font-family: Montserrat, sans-serif !important;
  text-transform: none;
  font-weight: 100;
  margin: 0;
  padding: 0;
  text-align: center;
  color: inherit;
  position: fixed;
  top: 110px;
  width: 100%;
  z-index: 10;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  position: fixed;
  top: center;
  margin-top: 20px;
}

.email-signup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.email-signup input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.email-signup button {
  padding: 10px 20px;
  font-size: 1rem;
  width: 100px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.email-signup button:hover {
  background-color: #0056b3;
}

.email-signup button:disabled {
  background-color: #ccc;
}

.input-button-group {
  display: flex;
  gap: 10px;
}

.email-signup .privacy-link {
  display: block;
  margin-top: 10px;
  font-family: Montserrat, sans-serif !important;
  text-transform: none;
  font-weight: 200;
  color: #048;
  text-decoration: none;
}

.error-message {
  color: red;
  font-size: 0.9rem;
  margin-left: 10px;
}

canvas {
  background: #f8f9fa;
}