*{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
img{
    width: 10%;
}
div ul{
    display: flex;
    gap: 3em;
    justify-content: right;
    padding: 1em;
}
div ul li{
    list-style: none;

}
div ul li a{
    text-decoration: none;
    color: black;
    font-size: bold;
}
div ul li a:hover{
    color: rgb(214, 37, 37);
}

.historia{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 70px 40px;
    background-color: rgb(214, 37, 37);
}

.imagen-historia{
    flex: 1;
}

.imagen-historia img{
    width: 100%;
    border-radius: 12px;
}

.contenido-historia{
    flex: 1;
}

.etiqueta-historia{
    display: inline-block;
    background: rgb(235, 235, 30);
    color: black;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contenido-historia h2{
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contenido-historia p{
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 18px;
}

.contenido-historia button{
    padding: 12px 25px;
    background: #00e5ff;
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: white 2px 2px 10px 1px;
}


@media (min-width:601px) and (max-width:1024px){

    .historia{
        gap: 25px;
        padding: 50px 30px;
    }

    .contenido-historia h2{
        font-size: 2rem;
    }

    .contenido-historia p{
        font-size: .95rem;
    }

    .contenido-historia button{
        padding: 10px 20px;
    }

}


@media (max-width:600px){

    .historia{
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 20px;
    }

    .imagen-historia{
        width: 100%;
    }

    .imagen-historia img{
        width: 100%;
    }

    .contenido-historia{
        width: 100%;
    }

    .contenido-historia h2{
        font-size: 1.8rem;
    }

    .contenido-historia p{
        font-size: .9rem;
        line-height: 1.6;
    }

    .contenido-historia button{
        width: 100%;
        padding: 12px;
    }

}