/* Palette */
/* A7B8D4 */
/* 5B749B */
/* 0E2446 */
/* 020C1C */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #5B749B;
    border-bottom: .1rem solid #0E2446;
    color: #0E2446;
    line-height: 4.8rem;
    height: 5.2rem;
    text-align: center;
}

header h1 {
    display: inline;
    font-size: 1.6rem;
}

header a {
    color: #0E2446;
}

header img {
    height: 3rem;
    vertical-align: sub;
}

header nav.language-switcher {
    display: inline;
    position: absolute;
    right: 3rem;
}
header nav.language-switcher ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav.language-switcher li {
    display: inline-block;
    margin: 0;
    padding: 0;
}
header nav.language-switcher li+li::before {
    content: ' | ';
}

main,
main.container {
    flex: 1;
    margin-top: 3rem;
    text-align: center;
}

footer {
    background: #5B749B;
    border-top: .1rem solid #0E2446;
    text-align: center;
    font-size: 1.3rem;
    height: 2rem;
}

footer a {
    color: #0E2446;
}

.button.button-black {
    color: black;
    border-color: black;
}

/* Landing Page */
.hero {
    background: #5B749B;
    border-bottom: .1rem solid #0E2446;
    margin-bottom: 3rem;
}
.hero img {
    width: 100%;
}
.hero a {
    color: #020C1C;
}
.hero a:hover {
    color: #A7B8D4;
}

.banner {
    margin-bottom: 3rem;
}

main nav.language-switcher,
aside nav.links {
    display: inline;
}
main nav.language-switcher ul,
aside nav.links ul {
    display: inline-block;
    list-style: none;
}
main nav.language-switcher li,
aside nav.links li {
    display: inline-block;
}
main nav.language-switcher li+li::before {
    content: ' | ';
}
aside nav.links li+li::before {
    content: '';
    padding: 1em;
}

main.frontpage {
    text-align: center;
}
main.frontpage h2 {
    margin-top: 3em;
}
aside.frontpage {
    text-align: center;
    display: block;
    margin-top: 5rem;
}
aside.frontpage h3 {
    /* display: inline; */
    /* padding: 0 1rem; */
}

.book .cover {
    border: 1px solid #666;
}
.book .description {
    text-align: justify;
}

.image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 153.68421053%;
    position: relative;
    margin-bottom: 5vh;
}
.image-wrapper.image {
    width: 100%;
    /*height: auto;*/
    position: absolute;
}

.to-be-continued {
    margin-top: 5rem;
    margin-bottom: 8rem;
}
