body {
    height: 125vh;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.7);
}
.splash {
    display: flex;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: #333;
    margin: auto;
    align-items: center;
    z-index: 1; /* Sit on top */
}
.splash .word {
    top: 30%;
    margin: auto;
    color: white;
    font: 700 normal 2.5em 'tahoma';
    text-shadow: 5px 2px #222324, 2px 4px #222324, 3px 5px #222324;
}

.container {
    line-height: 150%;
    margin-top: 75px;
    padding: 30px;
/*    margin-bottom: 50px;*/
    display: none;
}

.container .header {
    display: inherit;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    display: flex;
    align-items: center;
    z-index: 2; /* Sit on top */
}
  
.container .header * {
    display: inline;
}

.container .header img {
    height: 75px;
    margin-top: 8px;
    margin-left: 40px;
}

.container .header > ul {
    place-self: center;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 0.5rem;
    font-weight: bold;
    list-style: none;
}

.container .header li {
    margin: 20px;
    font-size: 1.75em;
}

.container .header li selected {
    text-decoration: underline;
}
.container .header li a {
    color: black;
    text-decoration: none;
    &:hover {
        text-decoration: underline;
    }
}

.container .main {
    display: inherit;
    margin-left: 45px;
    width: 80%;
    padding: 1em;
    overflow: hidden;
}
.container .main li a {
    color: black;
    text-decoration: none;
    &:hover {
        text-decoration: underline;
    }
}
.container .main .textbox {
    width: 80%; 
    padding: 5px;
}
.container .main .headline {
    font-weight: bold;
}
.container .main .subtext {
    font-size: smaller;
    font-weight: normal;
}

.container .footer {
    display: inherit;
    background-color: #ffff;
    text-align: center;
/*    position: fixed;*/
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    z-index: 98;
    font-size: 0.75em;
}

.container .footer a {
    color: black;
    text-decoration: none;
}

/* The Modal (background) */
.container .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
  /* Modal Content/Box */
.container .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 25%; /* Could be more or less, depending on screen size */
}
  
  /* The Close Button */
.container .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.container .close:hover,
.container .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}