.main-word {
    font-size: 0;
    text-align: center;
    height: 100px;

    span {
        font-size: 2rem;
    }
}

.bold {
    font-weight: bold;
}

.space {
    display: none;
}

.effect_container {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--soft-colour);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.effect_container.fade-out {
    opacity: 0;
    pointer-events: none;
}