body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 40em 1fr;
    grid-template-rows: auto 1fr auto 2em;
    grid-template-areas: 
        "left header right"
        "left content right"
        "left footer right"
        "bottom bottom bottom";
    background-color: #7a9cb4;
    width: 100vw;
    height: 100vh;
    background-image: url("background.png");
    /* center background image */
    background-position: center;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.logo {
    width: 500px;
    /* height: 300px; */
    margin-bottom: 20px;
}

.smallLogo {
    width: 150px;
    /* height: 80px; */
    margin-bottom: 20px;
}

.center {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 4;
    background-color: white;
    box-shadow: 0 0 1.5em rgba(0, 26, 43, 1);
    border-radius: 0 0 0.35em 0.35em;
}

.content {
    grid-area: content;
}

.hidden {
    display: none !important;
}

#footer {
    grid-area: footer;
    margin: 1em 2em;
    border-top: 1px solid #778599;
    padding: 0.5em 1em 1em 1em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1em;
}

a {
    color: #0099ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    margin: 2em 2em 0 2em;
    grid-area: header;
    border-bottom: 1px solid #778599;
}

fieldset {
    border: none;
}

#question {
    width: 400px;
    height: 300px;
}

.supportField {
    text-align: left;
    margin-top: 0.75em;
}

.supportField label {
    margin-left: 0.5em;
}

div[page="#support"] {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

#supportForm input[type="text"], #supportForm input[type="email"] {
    width: 20em;
}
