@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: rgb(231,231,231);
    overflow-x: hidden;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    background: url('/assets/img/Retratos - Negro y blanco clásico.png') no-repeat center center/cover;

    /* Difuminado en la parte inferior */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Filtro azul */
    z-index: 0; /* Detrás del texto */
}

.hero-content {
    position: relative;
    z-index: 1; /* Para que el texto esté por encima del filtro */
}

.hero-content .myLogo{
    height: 100px
}

.hero-content h1{
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0 30px;
}
.hero-content p{
    font-size: 2rem;
    text-transform: uppercase;
    margin: 30px 100px;
}

.myNetworking{
    height: 450px
}

section h2 {
    font-size: 3.5rem;
    margin: 20px 0;
}

section ol{
    font-size: 2rem;
    margin: 20px 0;
}
section ol li{
    margin: 15px 0;
}

.myCard{
    border-radius: 50px;
    box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.1);
    padding: 70px;
    background-color: white;
    transition: all 0.3s;
    width: 60%;
}
.myCard:hover{
    box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}
.myCard .card-body{
    margin-top: 5vh;
}
.myCard .card-body h3{
    font-size: 2rem;
}
.myCard .card-body .card-text{
    margin-top: 2rem;
    font-size: 1.25rem;
}

footer{
    background-color: black;
    color: white;
    padding: 25px;
}

footer p{
    font-size: 0.75em;
}

.pre-footer h2{
    font-size: 3.5rem;
    text-transform: uppercase;
}

.pre-footer h2 b{
    font-size: 4rem;
    text-transform: uppercase;
}
.moreInfo{
    font-size: 3rem;
}

@media (max-width: 780px) {

    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 20px;
        background: url('/assets/img/Retratos - Negro y blanco clásico.png') no-repeat center center/cover;

        /* Difuminado en la parte inferior */
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
    }

    .hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Filtro azul */
        z-index: 0; /* Detrás del texto */
    }

    .hero-content {
        position: relative;
        z-index: 1; /* Para que el texto esté por encima del filtro */
    }

    .hero-content .myLogo{
        height: 50px
    }

    .hero-content h1{
        font-size: 2.5rem;
        font-weight: bold;
        margin: 0 30px;
    }
    .hero-content p{
        font-size: 1.5rem;
        text-transform: uppercase;
        margin: 30px 100px;
    }
    .myNetworking{
        height: 130px
    }

    section h2 {
        font-size: 3.5rem;
        margin: 20px 0;
    }

    section ol{
        font-size: 2rem;
        margin: 20px 0;
    }
    section ol li{
        margin: 15px 0;
    }

    .myCard{
        border-radius: 50px;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
        padding: 70px;
        background-color: white;
        transition: all 0.3s;
        width: 85%;
    }
    .myCard:hover{
        box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
    }
    .myCard .card-body{
        margin-top: 5vh;
    }
    .myCard .card-body h3{
        font-size: 2rem;
    }
    .myCard .card-body .card-text{
        margin-top: 2rem;
        font-size: 1rem;
    }

    footer{
        background-color: black;
        color: white;
        padding: 25px;
    }

    footer p{
        font-size: 0.75em;
    }

    .pre-footer {

    }

    .pre-footer h2{
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .pre-footer h2 b{
        font-size: 2rem;
        text-transform: uppercase;
    }

    .moreInfo{
        font-size: 2rem;
    }
}