#intro {
  width: 100%;
  height: 100vh;
  background-position: right top;
  background-size: cover; 
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Rye", serif;
  font-weight: 400;
  font-style: normal;
}

.intro-content {
  text-align: right;
  position: absolute;
  bottom: 10%;
  right: 5%;
  left: 5%;
  color: white;
}

.intro-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.intro-content p {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-family: "Poiret One", sans-serif;
}

#startBtn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;

  font-family: "Rye", serif;
  font-weight: 400;
  font-style: normal;
}

#startBtn:hover {
  background: white;
  color: black;
}
#introTitle,
#introSubtitle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

#introTitle.show,
#introSubtitle.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .intro-content {
    left: 10%;
    bottom: 20%;
  }
  .intro-content h1 {
    font-size: 2.3rem;
  }
  .intro-content p {
    font-size: 1.2rem;
  }
  #startBtn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}