@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');


body{
    font-family: 'Acme', sans-serif;
    margin: 0%;
}
a{
    color: #ffffff;

}
.hero-section{
    background-image: url(../img/bg_inicio_mo.png);
    width: 100%;
    height: 100vh;
    background-size: cover;
}
.color-modal{
    background-color: rgb(0 0 0 / 75%);
    width: auto;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.color-modal h2{
    font-size: 3rem;
    color: #ffffff;
    margin-top: 60%;
}
.network-menu{
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    color: #ffffff;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}
.network{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;

}

@media (min-width:768px){

    .hero-section{
        background-image: url(../img/bg_inicio.png);
        width: 100%;
        height: 100vh;
        background-size: cover;
    }
    .color-modal{
        background-color: rgb(0 0 0 / 75%);
        width: auto;
        height: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: row;
    }
    .color-modal h2{
        font-size: 5rem;
        color: #ffffff;
        margin-top: 4%;
    }
    .network-menu{
        display: flex;
        flex-direction: column;
        font-size: 1.5rem;
        color: #ffffff;
        justify-content: space-around;
        align-items: center;
        gap: 1rem;
    }
    .network{
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;

    }

}