#hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--color-bg-3, #101010) 100%, var(--color-bg-3) 100%);
    z-index: 1;
    pointer-events: none;
}

#hero h1 {
    position: relative;
    height: 100%;
    z-index: 2;
}

.captioned {
    background-color: #302f30;
    border-radius: 5%;
    width: 100%;
}

.captioned img {
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
}

.captioned p {
    text-align: center;
    font-weight: bold;
    color: var(--color-fg-1);
    font-size: 1.5rem;
    margin: 20px auto;
}

.decorated h2 {
    margin-top: 40px;
    color: transparent;
    font-size: 8vh;
    background-image: linear-gradient(#8334eb, #b06ab3, #4ca1af, #c4e0e5, white);
    background-clip: text;
    text-align: center;
}

.decorated p {
    font-size: 25px;
    padding: 0 60px;
    color: white;
    text-align: center;
    line-height: 1.5;
    font-family: "Quicksand";
}

.decorated> :not(h2) {
    padding-left: 100px;
    padding-right: 100px;
}