body {
    background-color: bisque;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: (135deg, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    padding: 20px;
}

.card {
    background: rgb(126, 126, 179);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-align: left;
    margin-bottom: 15px;
}

.foto {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 15px;
}

.card h1 {
    font-size: 24px;
    margin: 10px 0;
    color: white;
}

.title {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
}

.info {
    text-align: left;
    margin-bottom: 20px;
    color: white;
}

.info p {
    font-size: 15px;
    color: #444;
    margin: 8px 0;
    color: white;
}

.btn {
    display: inline-block;
    background: #2575fc;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #6a11cb;
}