* {
    box-sizing: border-box;
}

.iframe-max-size {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 28.125%;
}

.iframe-wrapper>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
}

.web-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 16px;
}

body {
    background-color: #38B6FF;
}

article {
    background-color: #fff;
}

.left>img {
    object-fit: cover;
    object-position: 0% 20%;
}

.center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Public Sans", sans-serif;
    font-weight: 900;
}

p {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    line-height: 150%;
}

article ol, article ul {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    line-height: 150%;
}

footer {
    text-align: center;
}

a.nolink {
    text-decoration: none;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

article a {
    color: #0198cf;
    text-decoration: none;
}

article .highlight {
    border: 1px solid #0198cf;
    padding: 8px;
}

article .highlight p:first-child {
    margin-top: 4px;
}

article .highlight p:last-child {
    margin-bottom: 4px;
}

.breadcrumbs {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    line-height: 150%;
    font-size: small;
    color: grey;

    background-color: white;
    border: solid 1px grey;
    border-bottom: solid 1px #0002;
    margin-bottom: -1px;
    z-index: 1;
    padding: 4px;
}

.breadcrumbs a {
    color: inherit;
}

@media (min-width: 633px) {
    article {
        margin-top: 32px;
        width: 600px;
        border: 1px solid grey;
        box-shadow: 5px 5px 5px #0003;
        padding: 16px;
    }

    article.blog {
        width: calc(min(95vw, 900px));
    }

    .breadcrumbs {
        width: calc(min(95vw, 900px));
    }

    .left {
        float: left;
        margin-right: 16px;
    }

    .left>img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 632px) {
    article {
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px dashed lightgrey;
    }

    article:last-of-type {
        padding-bottom: 0;
    }

    .left>img {
        width: 100%;
        max-height: 200px;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-left: 16px;
        margin-right: 16px;
    }
}