body {
    margin: 0px;
    padding: 0px;
    font-family: 'Open Sans', serif;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 100vh;
}

.main-content {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #1f2d4b;
    color: white;
}

.main-content__title {
    font-weight: 500;
}

.main-content__img {
    margin: 10% auto 0 auto;
    display: block;
    width: 200px;
}

.main-content__text-container {
    text-align: center;
    margin-top: 30%;
}

.main-content__footer {
    margin-top: auto;
}

/* Note: commented out until links are available */
/* .main-content__link-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.main-content__link {
    font-size: 0.75rem;
    color: white;
    text-decoration: none;
}

.main-content__link:hover {
    text-decoration: underline;
} */

.main-content__copyright-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content__alertive-link {
    color: #1BBDD4;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 8px;
    text-decoration: none;
}

.main-content__alertive-link:hover {
    color: white;
}

.banner {
    grid-column: 2 / span 2;
    background-image: url('/assets/banner-image.jpg'); 
    background-repeat: no-repeat; 
    background-position: center center; 
    background-size: cover;
}

@media only screen and (max-width: 992px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }

    .banner {
        grid-column: 2 / span 1;
    }
}

@media only screen and (max-width: 576px) {
    .container {
        grid-template-columns: 1fr;
    }

    .banner {
        grid-column: 1 / span 1;
        height: 500px;
    }

    .main-content__footer {
        margin-top: 40px;
    }
}