body {
    font-family: 'Poppins', sans-serif;
    /* Degradado de fondo sutil */
    background: linear-gradient(to bottom right, #f8f8f8, #e0e0e0);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
}

.container {
    background-color: #ffffff; /* Fondo blanco para el contenedor */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

/* Estilos para el logo/imagen de perfil */
.profile-logo {
    width: 120px; /* Tamaño del logo */
    height: 120px;
    border-radius: 50%; /* Para hacerlo circular */
    object-fit: cover; /* Asegura que la imagen se ajuste sin distorsionarse */
    margin-bottom: 20px;
    border: 3px solid #e5e253; /* Borde naranja */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #FF6600; /* Naranja para el título */
    margin-bottom: 10px;
    font-size: 2.2em;
    font-weight: 600;
}

.description {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.5;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre los botones */
}

.link-button {
    background-color: #FF6600; /* Botones naranja */
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex; /* Para alinear el icono y el texto */
    align-items: center;
    justify-content: center; /* Centrar el contenido del botón */
}

.link-button:hover {
    background-color: #E65C00; /* Naranja ligeramente más oscuro al pasar el ratón */
    transform: translateY(-2px); /* Efecto de elevación sutil */
}

/* Espacio entre el icono y el texto dentro del botón */
.link-button i {
    margin-right: 10px;
    font-size: 1.2em; /* Ajusta el tamaño del icono si es necesario */
}

/* logotipo */
.logo {
    margin: auto;
    border-radius: 50%;
    width: 200px;
}
/* Estilos para los iconos de redes sociales */
.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre los iconos */
}

.social-icon {
    color: #FF6600; /* Color naranja para los iconos */
    font-size: 2.2em; /* Tamaño de los iconos */
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
    color: #E65C00; /* Color al pasar el ratón */
    transform: translateY(-2px);
}