/* Any !important is an override - as its meant to be ;) */
#introContainer {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    row-gap: 40px;
}
.iCDarken {
    transition: 2s;
    background-color: #263033;
}

#introWelcomeHeader {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 24px;
    margin-top: 10px;
    opacity: 0;
    text-shadow: 0 0 5px #e3e3e3;
    z-index: 20;
}

.iWHShow {
    transition: letter-spacing 1s, opacity 1s ease-in;

    letter-spacing: 4px;
    opacity: 1 !important;
}