body {
    background-color: #faf7f2;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.8s ease-out forwards;
}

/* .soonbox{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background-color: #383e42;
    color: #fff;
    text-shadow: black 0.1em 0.1em 0.2em;
} */


.opener {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.opener img {
    width: 95%;
    height: auto;
    display: block;
}

@media screen and (min-width: 768px) {
    .opener img {
        height: 60vh;
        object-fit: contain;
    }

}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    justify-content: center;
    margin: 40px 0;
}

.social-divider .line {
    height: 2px;
    background: #ccc;
    flex: 1;
    max-width: 220px;
}

.social-divider .icon {
    font-size: 40px;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

.social-divider .icon:hover {
    color: #8f1d1b;
    transform: translateY(-2px);
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

.email-link {
  color: #555555;
  text-decoration: none;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 4px;
  position: relative;
  transition: color 0.25s ease;
}

.email-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #8f1d1b;
  transition: width 0.25s ease;
}

.email-link:hover {
  color: #8f1d1b;
}

.email-link:hover::after {
  width: 100%;
}