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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

main {
    width: 100%;
    max-width: 800px;
}

.container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

a {
    color: #6db3f2;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #9dcbf7;
}

.links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.links a {
    color: #888;
    font-size: 0.95rem;
}

.links a:hover {
    color: #6db3f2;
}

@media (max-width: 600px) {
    body {
        padding: 1.5rem;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .profile-photo {
        width: 150px;
        height: 150px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .links {
        justify-content: center;
    }
}
