:root {
    color-scheme: light dark;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: light-dark(#fff, #000);
    color: light-dark(#000, #fff);
    font-family: 'Arial', sans-serif;
    font-size: 14pt;
}

.content {
    position: relative;
    min-height: 100%;
    padding-bottom: 50px;
}

main {
    width: 87%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.6rem;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0.5rem 0;
}

.homepage-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homepage-banner__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homepage-banner__title {
    font-size: 3rem;
    font-weight: 700;
    color: light-dark(#000, #fff);
    margin-bottom: 1rem;
}

.homepage-banner__text {
    font-size: 1.5rem;
    font-weight: 400;
    color: light-dark(#000, #fff);
    margin-bottom: 1rem;
}

.homepage-banner__content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img {
    width: 100%;
    /*max-height: 30%;*/
}

footer {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 50px;
    margin-top: auto;
    padding: 10px;
    background-color: light-dark(#333, #CCC);
    color: light-dark(#fff, #000);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.side-by-side {
    display: flex; 
    flex-direction: row; 
    width: 100%;
}

.side-by-side:nth-child(2n) {
    flex-direction: row-reverse;
}

.side-by-side-item {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .side-by-side {
        flex-direction: column;
    }

    .side-by-side:nth-child(2n) {
        flex-direction: column;
    }

    .side-by-side-item {
        width: 100%;
    }
}

.hidden {
    display: none;
    visibility: hidden;
}