/* Main universal styles */
p {
    white-space: pre-line;
}

.label {
    font-size: 60px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    letter-spacing: -1px;
}

.subLabel {
    font-weight: 400;
    padding: 10px;
    margin: 0;
    font-size: 40px;
    letter-spacing: -0.5px;
}

a.button {
    font-size: 30px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.fade {
    position: sticky;
    top: 50px;
    opacity: 0;
    transition: opacity 0.1s ease-out;
}

.hero-subLabel {
    font-weight: 400;
    font-size: 40px;
    margin: 0;
    padding: 20px 0;

    /* Each element needs to take its own vertical space */
    display: block;
    height: 10vh; /* Make each label take up a full viewport height */
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.description {
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .label {
        font-size: 50px;
    }

    .subLabel {
        font-size: 40px;
    }

    .hero-subLabel {
        font-size: 30px;
    }
}

@media (max-width: 700px) {
    .label {
        font-size: 40px;
    }

    .subLabel {
        font-size: 30px;
    }

}

