/* Reset some basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style the body */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

/* Container for the content */
.container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Profile picture styling */
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 80%;
    margin-bottom: 15px;
}

/* Header text */
header h1 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

/* Link button styling */
.link-buttons .link-btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 8px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

/* Hover effect */
.link-buttons .link-btn:hover {
    background-color: #0056b3;
}

/* Responsive font sizing */
@media (max-width: 500px) {
    header h1 {
        font-size: 1.2em;
    }

    .link-buttons .link-btn {
        font-size: 1em;
        padding: 12px;
    }
}
