body {
    background: linear-gradient(90deg,
            #c8102e,
            5%,
            white,
            50%,
            white,
            95%,
            #012169);
    display: flex;
    flex-direction: column;
    margin: 0;
}

p {
    margin: 0;
}

h1, h2, h3 {
    font-weight: normal;
    margin: 0;
}

h1 {
    margin: 32px 0 32px 0;
}

h2 {
    margin: 0 0 16px 0;
}

h3 {
    font-size: 21px;
}

.large-header-banner {
    height: auto;
    width: 1000px;
    @media (max-width: 1050px) {
        width: 100%;
    }
}

.small-header-banner {
    height: auto;
    width: 700px;
    @media (max-width: 750px) {
        width: 100%;
    }
}

.banners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.sub-header {
    text-align: center;
    text-decoration: underline;
    font-size: x-large;
    padding-bottom: 16px;

    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.large-cover-photo {
    margin: 32px 8px 32px 8px;

    width: 1000px;
    height: auto;
    @media (max-width: 1050px) {
        width: 100%;
    }
}

.medium-cover-photo {
    margin: 32px 8px 32px 8px;

    width: 640px;
    height: auto;
    @media (max-width: 750px) {
        width: 92%;
    }
}

.small-cover-photo {
    margin: 32px 8px 32px 8px;

    width: 400px;
    height: auto;
    @media (max-width: 750px) {
        width: 57%;
    }
}

.zero-top-margin {
    margin-top: 0;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8px; 
    padding: 16px 16px 0 16px;
}

.main-description {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;

    font-family: "Comic Sans MS";
    font-size: large;
    text-align: justify;
}

.content {
    max-width: min(95%, 970px);
    padding-bottom: 16px;
}

.footer {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.button-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-direction: column;
}

.button-row-outer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.button-row-inner {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.button {
    height: auto;
    width: auto;
    
    @media (max-width: 600px) {
        width: 35%;
    }
}

.button > img {
    width: 100%;
    height: 100%;
}

.buttons-description {
    padding-top: 16px;
    padding-bottom: 16px;
    font-family: "Comic Sans MS";
    font-size: x-large;
    text-align: center;
    text-decoration: underline;
}

.address-phone-number-info {
    padding: 24px 0 24px 0;
    font-family: "Comic Sans MS";
    font-size: large;
    text-align: center;
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hours-container {
    margin-left: auto;
    margin-right: auto;
    display: flex;

    flex-direction: row;
    row-gap: 32px;
    column-gap: 32px;

    @media (max-width: 600px) {
        flex-direction: column;
    }
}

.hours {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours p {
    font-family: "Comic Sans";
    margin: 2px 0 2px 0;
}

.copyright {
    padding-top: 24px;
    font-family: Verdana;
    font-size: small;
    text-align: center;
}