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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

header p {
    font-size: 16px;
    opacity: 0.9;
}

.links {
    list-style: none;
}

.links li {
    margin-bottom: 15px;
}

.links a {
    display: block;
    padding: 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.links a:hover {
    background-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    header {
        padding: 20px 15px;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }
}