h1, h2, h3, h4, h5, h6 {
    line-height: 110%;
}

body {
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    width: 98vw;
    min-height: 100vh;

    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
}

.sidebar {
    flex-shrink: 0;
    flex-grow: 0;
    min-height: 100%;
    width: 320px;
    background-color: #455a64;

    font-size: 18px;
    color: white;
    padding: 1em;
}

a:link    {color:#455a64; text-decoration:underline;}
a:visited {color:grey; text-decoration:underline;}
a:hover   {color:#ADD8E6; text-decoration:none;}
a:active  {color:black; text-decoration:underline;}

.sidebar nav       {text-align: center; padding-right: 2em;}
.sidebar a:link,
.sidebar a:visited {color:#ADD8E6; text-decoration:underline;}
.sidebar a:hover   {color:grey; text-decoration:none;}
.sidebar a:active  {color:white; text-decoration:underline;}

.footer {

}

.footer img {
    height: 24px;
    margin-top: 0.5em;
}

.footer a:link, .footer a:visited {text-decoration: none;}
.footer a:hover img {
    transform: scale(1.2);
}

.main {
    flex: auto;
    background-color: #ffffff;

    color: black;
    padding: 1em;
    line-height: 150%;
    text-indent: 3em;
    text-align: justify;
}

.date {
    font-size: 14px;
    color: grey;
}

.cut {
    display: flex;
    flex-direction: row;
}

.cut p {
    margin: 0;
    width: 70%;
    padding: 1em;
}

.cut img {
    width: 30%;
    height: auto;
    object-fit: contain;
}

.cut-img {
    padding: 0;
    margin: 0;
    width: 16em;
    height: 16em;
    object-fit: contain;
    flex: none;
}

.content p {
    padding-left: 1em;
    padding-right: 5em;
}

.content p img {
	display: block;
	max-width: 98%;
	height: auto;
	margin: auto;
}

li {
    padding: 0;
}

.pages {
    display: flex;
    justify-content: space-between;
}

.page {
    text-align: center;
}

.separator {
    padding-bottom: 0.5em;
    border-bottom: 2px #46C2A0 solid;
}

.separator > * {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    padding: 0;
}

#warning {
    color: black;
    background-color: #ffffa5;
    font-style: italic;
    border: dashed 2px grey;
}

@media(max-width:768px) {
    body {
        width: 100vw;
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .cut {
        flex-direction: column;
    }
    .cut img {
        display: box;
        width: 70%;
        order: -1;
        margin: 0 auto 0;
    }
    .cut-img {
        display: box;
        width: 100%;
        order: -1;
        margin: 0;
        flex: none;
        height: auto;
    }
    .cut p {
        width: auto;
    }
    .content p {
        padding: 0;
        padding-right: 0;
    }
}

.mobile {
}
.desktop {
}
@media(min-width:769px) {
    .mobile {
        display: none;
    }
}
@media(max-width:768px) {
    .desktop {
        display: none;
    }
}
