@charset "UTF-8";

/*
Prussian blue: #033047
Charcoal: #304c62
Payne's gray: #5c677d
Platinum: #d9d9d9
Isabelline: #f4f3ee
*/

/* ======================================= global ======================================= */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --head-bkg: #304058;
    --head-text: #F0F3F8;
    --head-ctrs: #FFB000;
    --bkg: #d9d9d9;
    --text: #101030;
    --ctrs: #305080;
    --white-color: #F9F9F9;
    /* Lotion */
    --beige-color: #EEDFCC;
    /* AntiqueWhite2 */
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #ccc;
    background-color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', Helvetica, sans-serif;
    color: #fff;
    font-weight: 700;
}

a {
    font-family: 'Lato', Helvetica, sans-serif;
    font-weight: 500;
    color: #fff;
}

a:hover {
    border-bottom: 1px var(--lightgray-color) solid;
    color: var(--lightgray-color);
}

@media screen and (max-width: 768px) {
    body {
        font-size: 0.875rem;
    }

    h1 {
        margin-block: 0.125rem;
        font-size: 2.625rem;
    }

    h2 {
        margin-block: 0.375rem;
        font-size: 1.625rem;
    }

    h3 {
        margin-block: 0.625rem;
        font-size: 1.rem;
    }

    h4 {
        margin-block: 1.0rem;
        font-size: 0.625rem;
    }

    h5 {
        margin-block: 1.625rem;
        font-size: 0.375rem;
    }

    h6 {
        margin-block: 2.625rem;
        font-size: 0.25rem;
    }

}

/*  ======================================= header ======================================= */

#main_header {
    position: sticky;
    top: 0;
    background: var(--head-bkg);
    color: var(--head-text);
}

#main_header a {
    color: var(--head-text);
}

#main_header a:hover {
    color: var(--head-ctrs);
}

#header_logo {
    height: 2.625rem;
}

#title_site {
    height: 1.625rem;
    display: inline-block;
}

#main_header select {
    height: 1.625rem;
}

#maptype {
    display: inline;
}

#horizontalnav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/*  ======================================= pages ======================================= */

#main_contents {
    min-height: 100vh;
    min-width: 100vw;
    color: var(--text);
    background-color: var(--bkg);
    text-align: center;
}

#main_contents a {
    color: var(--ctrs);
}

#main_contents a:hover {
    color: var(--head-ctrs);
}

#iframemap {
    min-width: 62vw;
    min-height: 38vw;
    margin-left: auto;
    margin-right: auto;
}