body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.container {
    width: 90%;
    max-width: 500px;
    display: flex;
    gap: 32px;
    flex-direction: row;
}

.left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 24px;
    border: 2px solid black; /* Black outline in light mode */
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10px;
}

.link-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.links a {
    margin: 0 10px;
}

.logo {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #ffffff;
    }

    .container {
        background-color: #1e1e1e;
        border: 1px solid #333333;
        border-radius: 8px;
        padding: 16px;
    }

    #profile-pic {
        border: 2px solid white; /* White outline in dark mode */
    }

    .links a {
        color: #ffffff;
    }

    .links a:hover {
        color: #bbbbbb;
    }
}

/* Responsive styles */
@media (max-width: 600px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .left-column, .right-column {
        width: 100%;
        text-align: center;
    }

    .links {
        flex-direction: column;
        align-items: center;
    }

    .link-row {
        flex-direction: row;
        justify-content: center;
    }

    .links a {
        margin: 0 10px;
    }
}