
html, body {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  scroll-padding-bottom: 80px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: #fdf6f0;
  color: #111;
  z-index: 0;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5;
}

.logo-block {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 20px 0;
}

.fade-text {
  font-size: 6em;
  font-style: italic;
  opacity: 0.5;
  filter: blur(2px);
  transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
  text-align: center;
}

.text-block {
  text-align: center;
  padding: 0 10%;
}

.subtext {
  margin-top: 20px;
  font-size: 1.1em;
  line-height: 1.6em;
  font-weight: bold;
}

.footer-block {
  text-align: center;
  padding: 20px 10%;
}

.form-container {
  max-width: 400px;
  margin: 0 auto;
}

.subscribe-form input[type="email"] {
  padding: 0.75em;
  font-size: 1em;
  width: 100%;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #111;
}

.subscribe-form button {
  padding: 0.75em;
  font-size: 1em;
  width: 100%;
  background-color: #111;
  color: #fff;
  border: none;
  cursor: pointer;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}

.follow-inline {
  font-size: 1em;
  margin-right: 10px;
}

.social-icons a {
  font-size: 1.5em;
  color: #111;
  text-decoration: none;
}

@media (max-width: 768px) {
  .fade-text {
    font-size: 3em;
  }

  .subtext {
    font-size: 1em;
  }

  .logo-block {
    font-size: 1.5em;
  }

  .subscribe-form input,
  .subscribe-form button {
    font-size: 1em;
  }

  .social-icons {
    font-size: 1.2em;
  }
}


.footer-block {
  text-align: center;
  padding: 20px 10%;
  margin-top: auto;
  padding-bottom: 40px;
  position: relative;
  bottom: 0;
  width: 100%;
}

.social-icons a i {
  transition: transform 0.3s ease;
}

.social-icons a:hover i {
  transform: scale(1.2);
}


.footer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  width: 100%;
  box-sizing: border-box;
}

.logo-block {
  font-size: 2.5em;
}

.subtext {
  font-family: 'Special Elite', monospace;
  font-weight: normal;
}

.form-container {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 15px;
}

.footer-block {
  padding-bottom: 80px;
  box-sizing: border-box;
}
