body{
    background: #fff;
    background: url("../img/bg06.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #fff;
    font-size: 18px;
    font-family: Arial;
}
.contenedor{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap:wrap;
    gap:20px;
}

.card{
    padding: 15px;
    background-color: rgba(7, 33, 50,0.7);
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    color: #ffffff;
    width: 300px;
    height: 80%;
    border: 1px solid #d10f5a;
    backdrop-filter: blur(2px); 
}
.card > p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.card:hover{
    background-color: rgba(7, 33, 50,0.9);
    transition: all 0.5s ease;
    box-shadow: 5px 5px 2px rgb(209, 15, 90,0.5), 
    -5px -5px 2px rgb(209, 15, 90,0.5);
}
.text-red{
    color: #a50b46;
}
.text-blue{
    color: #008be8;
}
.text-green{
    color: #018a45;
}
.text-yellow{
    color: #fcc94c;
}
.text-justify{
    text-align: justify;
}
.text-center{
    text-align: center;
}

.img-responsiva{
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-enlace{
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 9px 0;
    width: 100%;
    text-align: center;
    border: 1px solid #a50b46;
    background-color: #a50b46;
    border-radius: 8px;
}

.btn-enlace:hover{
    color: #fff;
    background-color: #7e0131;
    border: 1px solid #7e0131;
}

h1{
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #a50b46;
    font-size: 50px;
}
.w-100{
    width: 90%;
    margin-bottom: 15px;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin-bottom: 15px;
    background-color: rgba(7, 33, 50,0.7);
    border-radius: 10px;
    border-bottom: 2px solid #d10f5a;
}

.logo{
    font-size: 23px;
    font-weight: bold;
    color: #fff;
}

.menu{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    border: 1px solid rgb(0, 0, 0,0);
    padding: 10px;
}
.menu a:hover{
    color: #fcc94c;
    border-radius: 5px;
    border: 1px solid #d10f5a;
    padding: 10px;
    box-shadow: 2px 2px 2px rgb(209, 15, 90,0.5), 
    -2px -2px 2px rgb(209, 15, 90,0.5);
}

.header{
    /* posicion fija, pero se aplica cuando haces scroll en la pagina */
    position: sticky;
    /* posicionamiento en el eje z, indica que este elemento estara sobre todos los elementos */
    z-index: 1000;
    /* indica la separacion entre la parte superior de la pagina y de un elemento*/
    top: 0;
}

.pie-pagina{
    background-color: rgba(7, 33, 50,0.7);
    padding: 2rem;
    margin-top: 2rem;
    border-top: 2px solid #d10f5a;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.redonda{
    border-radius: 50%;
    border: 1px solid #d10f5a;
}
p .escalado {
    overflow: hidden;
}
.escalado{
    /* transicion suave cuando se aplica una transformacion con duracion de 0.3 segundos */
    transition: transform 0.3s ease;
}
.escalado:hover{
    /* quita el borde al hacer hovera */
    border: none;
    /* sombra en toda la imagen */
    box-shadow: 2px 2px 1px #d10f5a, -2px -2px 1px #d10f5a;
    /* hace un escalado de la imagen en un 10% */
    transform: scale(1.1);
    /* hace una animacion suave de 0.3 segundos */
    transition: all 0.3 ease;
}