body {
    max-width: 70rem;
    margin: 0 auto;
    padding: 1rem 1rem 0;
    font-family: sans-serif;
    line-height: 1.5;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
}

header img, header svg {
    max-height: 8rem;
}

h1 {
    color: #b1001e;
}

h2 {
    color: #004f91;
    margin-top: 2rem;
}

h1,h2 {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

sup {
    text-transform: none;
}

h1+*,h2+* {
    margin-top: 0;
}

*:has(+.subtitle) {
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.2rem;
}

.schedule {
    list-style-type: disc;
}

.schedule time {
    font-weight: bold;
}

.video {
    display: grid;
    column-gap: 1rem;
    align-items: center;
    justify-items: center;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

.video>img {
    max-width: 100%;
}

.video>.description {
    margin: 0;
    justify-self: start;
}

@media(min-width: 800px) {
    .video {
        grid-template-columns: 1fr 3fr 1fr;
    }

    .video>img {
        grid-column: 1;
        grid-row: initial;
    }

    .video>.description {
        grid-column: 2;
        grid-row: initial;
    }

    .video>.download {
        grid-column: 3;
        grid-row: initial;
    }
}

address {
    font-style: normal;
}

form {
    max-width: 40rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
}

form input {
    width: 100%;
}

form input[type=text], form input[type=email] {
    font-size: 1em;
    padding: 0.25rem;
}

form input[type=submit] {
    display: block;
    background-color: #cccccc;
    padding: 0.75rem;
    border: 1px solid #222222;
    width: auto;
}

form input[type=submit]:hover {
    background-color: #aaaaaa;
    cursor: pointer;
}

form input[type=submit]:active {
    background-color: #999999;
}
