/* Responsive profile layout */
.profile-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    margin-bottom: 1.5em;
}
.profile-info {
    text-align: center;
}
.profile-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 700px) {
    body {
        max-width: 900px;
    }
    .profile-flex {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2.5em;
        text-align: left;
        flex-wrap: nowrap;
    }
    .profile-info {
        text-align: left;
        min-width: 0;
        flex: 1 1 0;
    }
    .profile-img-wrap {
        align-items: flex-start;
        flex-shrink: 0;
    }
    .profile-img {
        width: 120px;
        height: 120px;
    }
}
/* Happy Times at the IKOB web font self-hosted */

@font-face {
    font-family: 'Happy Times';
    src: url('fonts/happy-times-NG_regular_master_web.woff2') format('woff2'),
         url('fonts/happy-times-NG_regular_master_web.woff') format('woff'),
         url('fonts/happy-times-NG_regular_master_web.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Happy Times';
    src: url('fonts/happy-times-NG_bold_master_web.woff2') format('woff2'),
         url('fonts/happy-times-NG_bold_master_web.woff') format('woff'),
         url('fonts/happy-times-NG_bold_master_web.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'Happy Times', serif;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #f5f6fa;
    color: #22232a;
}
.profile-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    /* Irregular 7-pointed star */
    clip-path: polygon(
        50% 0%,
        80% 18%,
        100% 50%,
        82% 85%,
        50% 100%,
        18% 85%,
        0% 50%,
        20% 18%
    );
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Happy Times', serif;
    font-weight: bold;
}
h1 {
    margin-bottom: 0.2em;
}
.contact {
    margin: 1em 0;
}
.section {
    margin-top: 2em;
}
