body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff; /* AliceBlue */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

header {
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #e6e6fa; /* Lavender */
    margin-bottom: 15px;
}

h1 {
    margin: 0;
    font-size: 2em;
    color: #4a4a4a;
}
.subtitle {
    font-size: 1.1em;
    color: #666;
    margin-top: 5px;
    font-weight: 400;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-card {
    background-color: #e0ffff; /* LightCyan */
    color: #333;
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #b0e0e6; /* PowderBlue */
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    background-color: #d0f0f0;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
}