body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}
h1, h2 {
    color: #2c3e50;
}
h1 {
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 10px;
}
.bio {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}
.bio img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #f1c40f;
}
.redes a {
    display: inline-block;
    margin-right: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
}
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 8px;
}

/* Estilos para la sección de contacto */
.redes-contacto {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.redes-sociales {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-youtube {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-youtube:hover {
    background-color: #CC0000;
}

.btn-telegram {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0088CC;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-telegram:hover {
    background-color: #006699;
}

.correo-contacto {
    font-size: 1.1em;
    color: #333;
}

.correo-contacto a {
    color: #EA4335;
    text-decoration: none;
    font-weight: bold;
}

.correo-contacto a:hover {
    text-decoration: underline;
}