:root {
    --cyan: #30d2e4;
    --darkblue: rgb(18, 38, 102);
    --blackblue: rgb(6, 11, 31);
    --lightblue: rgb(87, 119, 223);
    --darkblue_60: rgba(18, 38, 102, 0.616);
    --darkblue_30: rgba(18, 38, 102, 0.316);
    --darkblue_10: rgb(10, 23, 66);
    --gray: rgb(131, 131, 131);
    --white-blue: #f1f3ff;
    --white: #fff;

    --ff-zendots: "Zen Dots", sans-serif;
    --ff-roboto: "Roboto", sans-serif;
}

.hero-pages {
    height: 50vh;
    width: 100%;
    margin-top: 10vh;
    background-position: center;
    background-size: cover;
    position: relative;
}

.image-hero-pages {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(4, 4, 31, 0.5);
    padding: 0 1rem;
    box-sizing: border-box;
    text-align: center;
}

.center-hero {
    font-family: var(--ff-zendots);
    color: white;
    font-size: 2rem; 
    line-height: 1.2;
}

@media (max-width: 768px) {
    .center-hero {
        font-size: 1.6rem;
    }

    .hero-pages {
        height: 40vh;
        margin-top: 6vh;
    }
}

@media (max-width: 480px) {
    .center-hero {
        font-size: 1.2rem;
    }

    .hero-pages {
        height: 35vh;
        margin-top: 6vh;
    }
}
