.home {
    display:flex;
    width: 70%;
    background-attachment: scroll;
}

.pages_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   
}

.page {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 99;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}

.hero_text h1 {
    color: var(--primary_color);
    font-size: 8vh;
}

.hero_text h1 span {
    font-size: 15vh;
    font-weight: bold;
}

.hero_text h1 span.white {
    color: var(--primary_color);
}

.hero_text h1 span.red {
    color: var(--secondary_color);
}

.hero_text h1 span.green {
    color: var(--accent_color);
}

@media only screen and (max-width: 63.9375rem) {
    .page {
        position: relative;
        width: 100%;
        height: 100dvh;
        z-index: 99;
    }

    .hero_text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }

    .tag {
        position: absolute;
        top: 100%;
        left: 50%;
        background-color: var(--secondary_color);
        width: auto;
        transform: translate(-50%, -100%);
        padding: 0.8rem;
        text-align: center;
        justify-content: center;
    }
}
