.encre-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-group {
  width: clamp(300px, 60vw, 700px);
  position: relative;
}

.blank-icon {
  width: 100%;
  display: block;
  transform: rotateY(120deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.mascot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  transform: translate(-50%, -300%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: transform, opacity;
}

.encre-container .project-subtitle {
  margin-top: 50px;
  margin-bottom: 0px;
  color: #454545;
  text-align: center;
  font-size: clamp(18px, 3vw, 50px);
  font-weight: 300;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.encre-container .project-title {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #454545;
  text-align: center;
  font-size: clamp(45px, 10vw, 100px);
  font-weight: 800;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.encre-container .project-subtitle.visible, .encre-container .project-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.encre-container .more-button {
  background-color: #454545;
}

body.dark-mode .encre-container .project-title, body.dark-mode .encre-container .project-subtitle {
  color: #e8e8e8;
}

body.dark-mode .encre-container .more-button {
  background-color: #e8e8e8;
  color: #1e2545;
}
