body {
    font-family: Arial, sans-serif;
    background-color: #E4E4E3;
    font-size: 14px;
    line-height: 22px;
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}

@media (max-width: 670px) {
    .container {
        width: 100vw;
        max-width: 100vw;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 450px) {
    .container {
        padding: 0;
    }
}

.reading-subtitle {
    font-weight: bold;
	font-size: 16px;
    margin-bottom: 12px;
}

.reading-text {
    font-size: 16px;
    line-height: 24px;
}

.reading-text a {
    text-decoration: underline;
}

.reading-text a:hover {
    color: #d21400;
}

.image-in-text {
    float: right;
	margin: 0 0 0 10px;
}
.image-in-text-right {
    float: right;
	margin: 0 0 0 10px;
}

.image-in-text-left {
    float: left;
	margin: 10px 0 0 0;
}

.button {
    background-color: #ffd900 !important;
    color: black !important;
    font-weight: bold !important;
	align-self: flex-start;
    padding: 8px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.button:hover {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}

.link {
	text-decoration: underline;
}

.link-hidden:link {
	text-decoration: none; !important;
}

.link-highlight {
	color: #d21400;
	font-weight:bold;
}

.link-highlight:hover {
	text-decoration: underline;
}

.statement {
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	color: #8c8c8c;
	text-align: justify;
}

.legend {
	font-size: 12px;
	color: #8c8c8c;
	line-height: 14px;
	margin: 5px 0 0 0;
}

h1 {
    margin: 15px 0 10px 0;
    font-weight: bold;
    color: #d21400;
    font-size: 22px;
	line-height: 26px;
}

h2 {
    margin: 15px 0 5px 0;
    font-weight: bold;
    color: black;
    font-size: 18px;

}

h3 {
    margin: 15px 0 5px 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
}

h4 {
    margin: 10px 0;
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
}

p, li {
    font-size: 14px;
    line-height: 22px;
	margin: 0px 0 5px 0;
}

ul {
    padding: 0 0 0 16px;
    margin: 0;
}

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

figure {
    margin: 0;
}

@media (max-width: 450px) {
    h1 {
        font-size: 20px;
        line-height: 24px;
    }

    h2 {
        font-size: 18px;
        line-height: 24px;
    }

    h3 {
        font-size: 16px;
        line-height: 24px;
    }

    h4 {
        font-size: 16px;
        line-height: 24px;
    }

    body, p, li {
        font-size: 16px;
        line-height: 24px;
    }

    .image-in-text {
        float: none !important;
        width: 100% !important;
        max-height: 200px !important;
        margin: 12px 0 !important;
        object-fit: cover;
    }
}

.aspect-ratio > :first-child {
    width: 100%;
}

.aspect-ratio > * {
    height: auto;
}

@supports (--custom:property) {
    .aspect-ratio {
        position: relative;
    }

    .aspect-ratio::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }

    .aspect-ratio > :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}
