
:root {
    font-size: 16px; /* 1rem = 16px */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    display: flex;
    justify-content: center;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background-color: #fff;
}

a {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
strong {
	font-weight:bold;
}
h1, h2, h3, h4, h5, h6 {
	font-weight:normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a, 
h6 a {
	color:black;
}

h3 {
	margin-top: 2rem;
}

select {
	padding:.5rem;
}
input, button {
	padding: 1rem;
	font-family: "Open Sans", Arial, sans-serif;
	font-size:1rem;
	margin-bottom: 1rem;
}

option {
	padding: .25rem 0 0 .25rem;
	font-family: "Open Sans", Arial, sans-serif;
	font-size:.75rem;
}

.container {
    display: grid;
    grid-template-areas:
        "header"
        "filter"
        "content";
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100rem;
    width: 100%;
    padding: 1rem;
}

h1 {
    grid-area: header;
    margin: 0;
    padding: 1rem 0;
    text-align: center;
}

.filter {
    grid-area: filter;
    /* background-color: #f4f4f4; */
    padding: 1rem;
    overflow-wrap: break-word;
}

.content {
    grid-area: content;
    /* background-color: #e4e4e4; */
    padding: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (min-width: 768px) {
    .container {
        grid-template-areas:
            "header header"
            "filter content";
        grid-template-columns: 21rem 1fr;
    }
}
