* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: #fff;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    color: #2c3e50;
}

header p {
    margin-top: 0.5rem;
    color: #555;
    font-size: 1rem;
}

.intro {
    margin: 2rem 0;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.intro p {
    font-size: 1rem;
    line-height: 1.5;
}

.links {
    margin: 2rem 0;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #2ecc71;
}

.btn-secondary:hover {
    background: #27ae60;
}

footer {
    font-size: 0.8rem;
    color: #777;
    margin-top: 1rem;
}
