*, html {
    --font-size: 16px;

    --page-width: 860px;
    --page-background-color: #ffffff;

    --layout-vertical-margin-large: 1rem 0;
    --blog-post-header-font-size: 2.5rem;
    --blog-post-subtitle-font-size: 1.25rem;

    --blog-post-background-color: #ffffff;

    --border-color: #e0e0e0;
}

body {
    font-size: var(--font-size, 16px);
    font-family: 'Roboto', sans-serif;
    background-color: var(--page-background-color);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 1.75;
}

h1 {
    font-size: var(--blog-post-header-font-size);
    font-weight: 700;
    margin: var(--layout-vertical-margin-large);
}

.avatar-group sl-avatar {
    --size: 6rem;
}

.avatar-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 1rem 3rem 2rem;
}

.avatar-group sl-avatar {
    margin-left: -1rem;
    z-index: 1;
    transition: transform 0.5s;
}

.avatar-group sl-avatar[active] {
    transform: scale(1.75);
    z-index: 1000;
    transition: transform 0.5s;
}

.avatar-group sl-avatar::part(base) {
    border: solid 2px var(--sl-color-neutral-0);
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    url('/fonts/roboto/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    url('/fonts/roboto/roboto-v30-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    url('/fonts/roboto/roboto-v30-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    url('/fonts/roboto/roboto-v30-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
}

