body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

main {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%); /* This line makes the image black and white */
}

.profile-content {
    flex: 1;
    text-align: left;
}

h1 {
    color: #000000;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.social-icon {
    color: #000000;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #666666;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #000000;
}

@media (max-width: 600px) {
    .profile-container {
        flex-direction: column;
    }

    .profile-content {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}