*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;

}

body{
    margin: 0;
    padding: 0;
    height: 100vh;

}

.fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 80%;
   
}

.contenido {
    text-align: center;
    color: white;
    position: relative;
    top: 35%;
    transform: translateY(-35%);
    padding: 20px;
}

.contenido h1{
   font-size: 90px;
   color: rgb(36, 9, 9);
   
}

.contenido p{
    font-size: 25px;
    color: rgb(250, 247, 247);
}

.contenido nav  ul{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;

  
}

.contenido nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 20px;
}

.redes a{
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: 0.5s;

}

header{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    padding: 15px 0;

}

header h1 {
    font-size: 3em;
    font-style: oblique;
    margin: 0;

}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 10px 10px 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: blue;
    font-weight: bold;
    transition: color 0.3s;
}

.contenido-blog {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.img-principal {
    width: 100%;
    border-radius: 10px;
}
.titulo-autor {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 35px;
    margin-bottom: 10px;
}

.titulo-autor h2 {
    font-size: 28px;
    color: #5a2d0c;
    margin: 0;
    text-align: center;
}


.autor {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-60%);
    text-align: right;
    
}

.imagen_autor {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d46f31;
}

.autor p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}


.fecha {
    color: #000000;
    font-size: 15px;
    margin-top: 10px;
    text-align: justify;
}

.parrafo2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.parrafo1 p {
    margin-top: 50px;
    line-height: 1.6;
    text-align: justify;
}

.parrafo2 p {
    margin: 0;
    line-height: 1.6;
    text-align: justify;
}

.parrafo3 p {
    margin-top: 2%;
    line-height: 1.6;
    text-align: justify;
}


.fa-paw {
    text-align: center;
    margin-top: 5px;
    font-size: 60px;
    color: #d46f31;
}

.p {
    margin: 0;
    line-height: 1.6;
    text-align: justify;
}


main h2 {
    font-size: 2em;
    color: #ff8c00;
    margin-bottom: 10px;
}

.fotos-galeria {
    display: grid;
    grid-template-columns: repeat(3, auto); 
    grid-template-rows: repeat(2, auto); 
    gap: 20px;
    justify-items: center;
}

.descripcion {
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}


.descripcion img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.subtitulo {
    background-color: #fff8e6;
    padding: 10px;
    font-weight: bold;
    border-top: 2px solid #ffcc70;
}

.contenido-videos {
    margin-top: 120px; 
    padding: 40px;
    text-align: center;
}

.contenido-videos h2 {
    color: #303234;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.contenido-videos .intro {
    font-size: 1.1em;
    color: #000000;
    margin-bottom: 40px;
}

.videos {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.descripcion_video {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    padding: 20px;
    width: 90%;
    max-width: 800px;
    text-align: center;
    transition: transform 0.3s ease;
}


.video-item iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.descripcion_video h3 {
    color: #0a0a0a;
    margin: 15px 150px 6px;
    font-size: 15px;
    text-align: center;

}

.descripcion_video p {
    color: #555;
    font-size: 1em;
    line-height: 1.6;
}

footer {
    text-align: center;
    background-color: #f7cfc5;
    padding: 20px;

}

.redes_index {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s;
}

.redes a {
    color: #5a2d0c;
    font-size: 24px;
    transition: color 0.3s;
}


