:root {
  --speed: 1.2s;
  --stagger: 0.2s;
  --line-height: 1.3;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  font-family: "Red Hat Display", sans-serif;
  color: #00716D;
  background-color: #f9f5e9;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
h1{
    font-size: 70px;
    font-weight: 800;
    max-width: 8ch;
    text-align: center;
    line-height: 0.9;
}
.name p{
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 4.9px;
}
footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
footer a{
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: .5px solid #00716D;
  color: #00716D;
  padding: 10px 20px;
}
footer a:hover{
  background: #00716D;
  border: .5px solid #00716D;
}
footer a:hover p{
  color: #f9f5e9;
}
footer a path{
  fill: #00716D;
}

footer a:hover path{
  fill: #f9f5e9;
}

footer a p{
  font-size: 20px;
  font-weight: 400;

}
/* .o-text-reveal {
  display: flex;
  flex-direction: column;
  align-items: start;
} */

/* .o-text-reveal__wrapper {
  overflow: hidden;
  line-height: var(--line-height);
}
.o-text-reveal__item {
  transform: translateY(110%);
  transition: transform var(--speed) cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.is-ready .o-text-reveal__item {
  transform: translateY(0);
} */
