* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 200vh;
  background: white;
  overflow-x: hidden;
}
#home {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.letter {
  position: absolute;
  font-family: 'Marcellus SC', serif;
  font-size: 6rem;
  color: black;
  left: 0;
  top: 0;
  transform-origin: center center;
  transition: opacity 0.3s ease;
}
#mantra {
  position: absolute;
  top: 60%;
  width: 100%;
  text-align: center;
  font-family: 'Marcellus SC', serif;
  font-size: 1.5rem;
  color: #e91e63;
  opacity: 1;
  transition: opacity 0.3s ease;
}
#pinecone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: auto;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
