body {
  margin: 0;
  height: 100vh;
  background-color: #6e1e3c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'IBM Plex Sans', sans-serif;
  overflow: hidden;
}

.centered-name {
  font-size: clamp(32px, 10vw, 120px);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  animation: fadeSlideDown 0.6s ease 0.5s forwards;
  position: relative;
  top: -2vh; /* or adjust to taste, try -1.5vh or -2vh */
}


.letter {
  display: inline-block;
  font-weight: 400;
  transition: transform 0.25s ease, font-weight 0.25s ease;
  transform: scale(1);
}

.letter.enlarged {
  font-weight: 800;
  color: #fdfdfd;
  transform: scale(1.05);
}

.contact-link {
  position: absolute;
  bottom: 40px;
  text-align: center;
  font-size: 1rem;
  width: 100%;
  color: #fff;
}

.contact-fade {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  margin: 0;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.5s forwards;
}

p a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

p a:hover {
  color: #f0e6ec;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
