body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light gray background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top for longer content */
    min-height: 100vh;
    padding-top: 20px; /* Add some padding at the top */
    padding-bottom: 20px; /* Add some padding at the bottom */
}

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

header {
    margin-bottom: 30px;
}

.profile-picture {
    width: 120px; /* Adjust size as needed */
    height: 120px; /* Adjust size as needed */
    border-radius: 50%; /* Makes it circular */
    object-fit: cover; /* Ensures the image covers the area well */
    margin-bottom: 15px;
    border: 3px solid #eee; /* Optional border */
}

header h1 {
    margin: 10px 0 5px 0;
    font-size: 1.8em;
    color: #333;
}

.bio {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    padding: 0 15px; /* Add some padding if bio is long */
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between link buttons */
}

.link-button {
    background-color: #007bff; /* Blue background for buttons */
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex; /* For icon alignment */
    align-items: center; /* For icon alignment */
    justify-content: center; /* For icon alignment */
}

.link-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.link-button i {
    margin-right: 10px; /* Space between icon and text */
}

footer {
    margin-top: 40px;
    font-size: 0.8em;
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    header h1 {
        font-size: 1.5em;
    }

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

    .link-button {
        padding: 12px 15px;
        font-size: 0.95em;
    }

    .bio {
        font-size: 0.9em;
    }
}
