body {
    font-family: "Nebula Sans", sans-serif;
    background-color: #f7f4df;
}

h3 {
    font-size: 2rem;
    text-align: left;
    width: calc(100% - 4rem);
    font-family: "Nebula Sans", sans-serif;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

div#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    > *:nth-child(2) {
        flex: 1 1 0;
    }
}

div#header {
    position: fixed;
    width: 100%;
    height: 5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #ffffffff;
    border-bottom: 1px solid #dee2e6;
}

div#logo {
    height: 4rem;
}

div#logo img {
    height: 100%;
}

div#contentOuter {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div#contentInner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding: 20px;
    max-width: 1200px;
}

div.row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    > * {
        flex: 1 1 0;
        min-width: 0;
        height: 100%;
    }

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

div.row.reverse {
    flex-direction: column-reverse;

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

div.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div.text {
    background: rgba(0,0,0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    > * + * {
        margin-top: 1rem;
    }
}

div.text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333333;
    text-align: left;
    width: calc(100% - 4rem);
}

div.text p a {
    color: #eb6706;
    text-decoration: none;
    cursor: pointer;

    &:hover {
        color: #5f94cb;
    }
}

div#footer {
    background: #333333;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
