:root {
    --background-color: #e0e0e0;
}

body {
    background-color: var(--background-color);
    margin: 0;
    color: #202020;
    font-family: Georgia, serif; 
    font-size: 1.1rem;
    line-height: 1.6rem;
}

.header {
    font-family: "Aller", sans-serif; 
    font-size: large;
    text-transform: uppercase;
    background-color: white;
    padding: 1rem 1rem 1rem 1rem;
}

.logo {
    width: 250px;
    max-width: 50%;
}

.banner {
    margin-bottom: 0.5rem;
}

img.banner {
    width:100%; 
    height:250px; 
    object-fit:cover;
}

h1 {
    font-size: x-large;
}

h2 {
    font-size: large;
}

table {
    width: 100%;
    border: 1px solid;
    border-collapse: collapse;
}

th {
    text-align: left;
    border: 1px solid;
    padding: 0.5rem;
    background-color: #f0f0f0;
}

td {
    border: 1px solid;
    padding: 0.5rem;
    vertical-align: top;
}

li {
    padding-bottom: 0.5rem;
}

iframe {
    width: 100%;
    border: none;
}

.one_column,
.two_columns,
.three_columns {
    box-sizing: border-box;
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.two_columns .column {
    box-sizing: border-box;
    width: 50%;
    float: left;
}

.three_columns .column {
    box-sizing: border-box;
    width: 33.3%;
    float: left;
}

.two_columns:after,
.three_columns:after {
    content: "";
    display: block;
    clear: both;
}

article {
    width: 100%;
    box-sizing: border-box;
    background-color: white;
    border: 0.5rem solid var(--background-color);
    padding: 1rem;
}

article img {
    width: 100%;
    object-fit:cover;
}

.spacer {
    height: 1rem;
}

.footer {
    color: white;
    background-color: #202020;
    margin-top: 0.5rem;
    padding: 1rem 2rem 1rem 2rem;
    font-family: "Aller", sans-serif; 
    font-size: large;
}

.footer a {
    color: white; 
    text-decoration: none;
}


@media screen and (max-width: 1024px) {
    #logo {
	width: 50%;
	max-width: 250px;
    }

    .one_column,
    .two_columns,
    .three_columns {
	padding: 0;
    }

    .one_column,
    .two_columns .column,
    .three_columns .column {
	width: 100%;
    }

    article {
	border-left: 0;
	border-right: 0;
    }

    /* https://paulbradley.dev/css-flex-responsive-tables/ */

    table {
	border: none;
    }
    
    thead {
        display: none;
    }

    table tr {
        border: 1px solid #202020;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: -1px;
	padding: 1rem;
    }

    table td {
        border: none;
	padding: 0;
        width: 100%;
	overflow-wrap: anywhere;
    }

    td:first-child {
	font-weight: bold;
    }
}

}
