@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');

html,
body {
    background: #181c20;
    color: #e6e6e6;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
}

body {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main {
    text-align: center;
    max-width: 420px;
    margin: auto;
    padding: 2em 1.2em 1.5em 1.2em;
}

.profile-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    margin-bottom: 1.2em;
}

.profile-flex .profile-photo {
    margin-bottom: 0;
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 20%;
    object-fit: cover;
    border: 1px solid #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.profile-names {
    text-align: left;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 0.2em;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #fff;
}

p {
    font-size: 1em;
    margin-top: 0.2em;
    margin-bottom: 1.2em;
    color: #b0b8c1;
    line-height: 1.5;
    font-weight: 300;
}

nav {
    margin-top: 1.5em;
    display: flex;
    justify-content: center;
    gap: 0.7em;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid currentColor;
    background: transparent;
    border-radius: 50%;
    color: #b0b8c1;
    font-size: 1.25em;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    outline: none;
    margin: 0 2px;
    text-decoration: none;
    box-shadow: none;
}

.icon-btn:hover,
.icon-btn:focus {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.1em;
    }

    main {
        max-width: 98vw;
        padding: 1em 0.2em;
    }

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

    .profile-flex {
        flex-direction: column;
        gap: 0.5em;
        align-items: center;
    }

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

    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }

    .icon-btn svg {
        width: 16px;
        height: 16px;
    }
}