body {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  font-family: "Great Vibes", sans-serif;
  color: #ebebeb;
}

a {
  font-size: clamp(1vw, 3vw, 5vw);
  color: #ebebeb;
  text-decoration: none;
  transition: color 0.3s;
  font-family: "Great Vibes", sans-serif;
  margin-left: 26%;
}

a:hover {
  color: grey;
}

h1 {
  margin: 0;
  color: white;
  font-size: clamp(5vw, 10vw, 15vw);
  font-family: "Dancing Script", sans-serif;
  animation: anim 1.3s ease-in-out forwards;
}

.saw {
  color: #696969;
  opacity: 0.8;
  width: 90%;
  height: 70%;
}

#say {
  display: flex;
  justify-content: flex-end;
  padding: 2% 2% 0 0;
}

#say h2 {
  text-align: right;
}

#say2 {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  padding: 0 0 2% 2%;
}
.saw h2 {
  width: 30vw;
  font-size: 3vw;
  margin: 0;
  animation: ct 1.4s ease-in-out forwards;
}
#say2 h2 {
  text-align: left;
}

p {
  animation: st 1s ease-in-out forwards;
  margin: 0;
}

@keyframes anim {
  0% {
    transform: translateX(-70%) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes st {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ct {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 800px) {
  a {
    font-size: 10vw;
    margin-left: 0;
  }

  h1 {
    font-size: 20vw;
  }
  .saw h2 {
    width: 80vw;
    font-size: 7vw;
  }
  #say2 {
    margin: 3% 0 0 0;
    align-items: center;
  }
  #say {
    margin: 0 0 3% 0;
    align-items: center;
  }
}
