:root {
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
    :root { font-family: InterVariable, sans-serif; }
}
/* Light mode */
@media (prefers-color-scheme: light) {
  body {
      background-color: white;
      color: black;
  }
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
  body {
      background-color: black;
      color: white;
  }
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    margin: 0;
 
    font-family: 'Inter', sans-serif;
    font-size: 120%; 
}
#my-form, #contact-info {
  text-align: center;
}
.g-recaptcha {
    display: flex;
    justify-content: center;
}
.button {
  width: 120px;
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.button:hover {
  background-color: #45a049;
}
.big-text {
  font-size: 2em;
  font-weight: bold;
}
.normal-text {
  font-size: 1em;
}
#logo-and-link {
    display: block;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
}
#logo {
    width: 100%;
}
