body {
    background-color: black;
    font-family: 'Courier New', monospace;
    color: #C0C0C0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contenedor {
    display: flex;
    align-items: center;
}

.informacion {
    text-align: left; /* Alineamos el texto a la izquierda */
}

.imagen-persona {
    width: 150px;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s ease-in-out;
}

.nombre {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px; /* Agregamos un margen inferior al nombre */
}

.redes-sociales {
    margin-top: 0; /* Quitamos el margen superior */
}

.enlace-red-social {
    color: #C0C0C0;
    text-decoration: none;
    display: block; /* Cambiamos el estilo a bloque */
    margin: 5px 0; /* Ajustamos el margen */
}

.enlace-red-social i {
    margin-right: 5px;
}

.enlace-red-social:hover {
    text-decoration: underline;
}

.correo {
    font-size: 14px; /* Tamaño de texto más pequeño */
    color: #808080; /* Color menos visible */
    margin: 0; /* Elimina el margen */
}

.pie {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #222;
    color: #C0C0C0;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

.pie a {
    color: #C0C0C0;
    text-decoration: none;
}

.pie a:hover {
    text-decoration: underline;
}
