
@font-face {
  font-family: 'StempelGaramondLTStd-Bold';
  src: url(StempelGaramondLTStd-Bold.otf) format("opentype");
}

@font-face {
  font-family: 'StempelGaramondLTStd-BoldIt';
  src: url(StempelGaramondLTStd-BoldIt.otf) format("opentype");
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: 'StempelGaramondLTStd',sans-serif;
  background-color: black;
}

.gif-frame {
  width: 40vw;
  aspect-ratio: 8 / 5; /* = 1.6 */
  margin: 0 auto;
  overflow: hidden;
  background: black;
}

.gif-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#randomGif {
  width: 40vw;
  height: auto;
  display: block;
  margin: 0 auto;

  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#randomGif.visible {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  #randomGif {
    width: 70vw;
  }
  .gif-frame {
  width: 70vw;
  }
}

@media (max-width: 400px) {
  #randomGif {
    width: 80vw;
  }
  .gif-frame {
  width: 80vw;
  }
}

.signup-section {
  display: block;
  font-family: 'StempelGaramondLTStd-Bold' !important;
  text-align: center;
  color: white;
  font-size: 28px;
  position: fixed;
  letter-spacing: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  cursor: default;
}

.coming-soon {
  margin-top: 20px;
  font-size: 24px;
}

.embeddable-buttondown-form {
  display: flex;
  font-family: 'StempelGaramondLTStd-Bold' !important;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.embeddable-buttondown-form input[type="email"] {
  background-color: black;
  color: white;
  border: 1px solid white;
  padding: 10px;
  width: 220px;
  font-size: 14px;
  outline: none;
}

.embeddable-buttondown-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.embeddable-buttondown-form input[type="email"]:focus {
  border-width: 2px;
}

.embeddable-buttondown-form input[type="submit"] {
  font-family: 'StempelGaramondLTStd-BoldIt' !important;
  background-color: black;
  color: white;
  border: 1px solid black;
  padding: 10px 18px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.embeddable-buttondown-form input[type="submit"]:hover {
  background-color: white;
  color: black;
}

#success-message {
  font-family: 'StempelGaramondLTStd-BoldIt' !important;
  color: white;
  font-size: 18px;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#success-message.visible {
  opacity: 1;
  transform: translateY(0);
}


video {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 40%;
  height: 40%;
  z-index: 100;
  cursor: default;
}

iframe {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 40%;
  height: 40%;
  z-index: 100;
  cursor: default;
}

#text p {
  display: block;
  font-family: 'StempelGaramondLTStd-Bold';
  text-align: center;
  color: white;
  font-size: 24px;
  position: fixed;
  letter-spacing: 0px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  cursor: default;
}

#about p {
  display: block;
  text-align: center;
  color: white;
  font-size: 24px;
  position: fixed;
  letter-spacing: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  cursor: default;
}

#text a {
  font-family: 'StempelGaramondLTStd-Bold';
  color: white !important;
  letter-spacing: 1px;
  font-size: 24px;
  z-index: 200;
  cursor: pointer;
}

#about a {
  color: rgb(255, 255, 255) !important;
  letter-spacing: 1px;
  font-size: 24px;
  z-index: 200;
  cursor: pointer;
}



/*MOBILE*/

#mobile-body {
  width: 100%;
  height: 2000px;
}

#mobile-body p {
  text-align: center;
  font-size: 48px;
  letter-spacing: 2px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 300px;
  cursor: default;
}