
body  {
    font-family: Georgia, Times, "Times New Roman", serif;
    background-color: white;
    min-height: 100%;
    color: black;
}

#main {
    position:relative;
    display:flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    height:100vh;
    min-height:640px;
}

.container {
    max-width: calc(50em + 3vw);
    padding: 5vw;
    box-sizing: border-box;
    position: absolute;
}
.container .story {
    font-size: calc(1.5em + 1vw);
}

/* links */

#main a {
    text-decoration: none;
}

#credits a {
    text-decoration: underline;
    color: black;
}

.link {
    display: block;
    background-color: #333;
    color: white;
    font-style: italic;
    padding: calc(0.3em + 0.8vw);
    cursor: pointer;
}

.link a {
    color: white;
}

.link:hover {
    background-color: black;
}

.link::after {
  content: " \2192";
}


/* header */

.header {
    width:100%;
    color: white;
    background-color: #333;
}


/* langauge menu */

.header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    vertical-align:top;
    text-align: right;
    margin-bottom: 2px;
}

.language li{
    display: inline-block;
    padding: 0 4.5mm;
}

.language a {
    color: white;
    line-height: 9mm;
}

.language li.selected{
    background-color: white;
}

.language .selected a {
    color: black;
    text-decoration: none;
}

