body {
    background: linear-gradient(to right, #065709, #8e21f3); /* Degradado de fondo */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    padding: 20px;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.profile-img:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.link-button {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: block; /* Para que el botón ocupe todo el ancho disponible */
    text-align: center;
}

.link-button:hover {
    background-color: #f0f0f0;
    color: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.link-button i {
    margin-right: 10px;
}
