.welcome {
    background-image: url('../assets/images/couple.jpeg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    background-blend-mode: normal;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    color: #fff;
    transition: all 2s ease-in;
    opacity: 0;
    transform: translateY(-100%);
    padding-top: 8rem;
}

.welcome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

.welcome.active {
    transform: translateY(0);
    opacity: 1;
}

.welcome.hide {
    top: -100%;
    opacity: 0;
}

.welcome h2 {
    font-size: 3.5rem;
    font-family: var(--sacramento);
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    line-height: 1.5;
}

.welcome figure {
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    flex-direction: inherit;
    margin-top: 1rem;
}

.welcome figure img {
    display: none;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 2px solid #fff;
}

.welcome figure figcaption {
    font-family: var(--sacramento);
    font-weight: 400;
    margin-top: 0.5rem;
    font-size: xx-large;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.welcome p span {
    font-size: 2rem;
    margin: 1rem 0;
    display: block;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.welcome button {
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    gap: 0.4rem;
    color: #000;
    padding: 0.5rem 1rem;
    border: none;
    transition: var(--transition-small);
    border-radius: 15px;
    cursor: pointer;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
}

.welcome button:hover {
    color: #fff;
    background-color: #000;
}

.welcome button i {
    font-size: 1.2rem;
}