
@import url("https://fonts.googleapis.com/css?family=Lato");

@media (prefers-color-scheme: light) {
    body {
        background-color:#f3f3f3;
    }
    
    .body-content {
        color: #000;
    }
    
    .section {
        background-color: #fff;
        box-shadow: 0 0 0.75em 0.1em #aaa;
    }

    a:link, a:visited {
        color: #006;
    }

    .banner {
        box-shadow: 0 0 0.75em 0.1em #141414;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color:rgb(26, 28, 29);

    }
    
    .body-content {
        color: #eee;
    }
    
    .section {
        background-color: #141414;
        box-shadow: 0 0 0.75em 0.05em #141414;
    }

    a:link, a:visited {
        color: #eef;
    }

    .banner {
        box-shadow: 0 0 0.75em 0.05em #141414;
    }
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner {
    width: 100%;
    max-width: 56.25rem;
    max-height: 20vh;
    aspect-ratio: 3;
    object-fit: cover;
}

@media (max-height: 500px) {
    .banner {
        display: none;
    }
}

/* Hide banner - still has watermark */
.banner {
    display: none;
}

.header {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    margin: 0;
    padding: 1em;
    background-color: #030324;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;

    box-sizing: border-box;
    z-index: 100;
}

.header-content {
    max-width: 56.25rem;
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.header-menu-item {
    padding-left: 0.5em;
    padding-right: 0.5em;
    font-weight: bold;
}

.logo {
    /*font-weight: bold;*/
    font-size: 1.5em;
}

.logo > img {
    height: 1.5em;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact {
    justify-content: space-around;
    display: flex;
    justify-content: center;
}

@media (max-width:500px) {
    .contact {
        justify-content: flex-start;
    }
}

.contact > * {
    padding-left: 1em;
    padding-right: 1em;
}

.body-content {
    font-family: "Lato";
    max-width: 56.25rem;
    margin: 0;
    flex-grow: 1;
    font-size: 0.9em;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
}

.section {
    flex:          1 1 0px;
    padding:       1.5em;
    padding-left:  2em;
    padding-right: 2em;
    margin:        0.5em;
    margin-top:    1em;
    margin-bottom: 0em;
    min-width:     15em;
}

.section-title {
    font-family: "Lato";
    font-weight: bold;
    font-size: 1.4em;
    text-align: center;
}

.footer {
    width: 100%;

    margin-top: 1em;

    /*box-shadow: 0px 0px 8px 0.1em #131313;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-content {
    color: #888;
    max-width: 56.25rem;
    width: 100%; 
    
    font-family: "Lato";
    box-sizing: border-box;
    margin-top: auto;
    font-size: 0.75em;
    padding: 1em;
}