body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Maven Pro', sans-serif;
}

a {
    color: orangered;
    text-decoration: none;
}

a:visited {
    color: orangered;
}

a:hover {
    color: tomato;
    font-weight: bolder;
}

a:active {
    color: red;
}

#splash {
    min-height: 100vh;
    height: 100%;
    background-image: url('/media/img/penguin-panorama-light.jpg');
    margin: 0;
    position: relative;
    overflow: auto;
}

main {
    margin: 20px;
    min-height: 80vh;
    overflow: auto;
}

nav {
    margin: 30px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

#splash h1 {
    font-size: 75px;
    color: darkorange;
    margin-bottom: 0;
    margin-top: 20px;
}

#splash h2 {
    font-size: 48px;
    color: orange;
    margin-top: 0;
}

.text-shadow {
    text-shadow: 2px 2px 2px #ffffff;
}

#httpsLink {
    display: none;
}

.styled-link, .styled-links a {
    font-family: 'Maven Pro', sans-serif;
    font-size: 22px;
    background-color: rgba(255, 255, 255, 0.7);
    padding-left: 5px;
    padding-right: 5px;
}

.link-med, .links-med a {
    font-size: 16px;
}

.button {
    box-sizing: content-box;
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid;
    font-family: 'Maven Pro', sans-serif;
    font-size: 18px;
    color: white;
    text-align: center;
    background: rgba(255, 153, 0, 0.7);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    margin: 2px;
}

.button-med {
    padding: 5px 10px;
    font-size: 16px;
}

.button-sml {
    padding: 2px 5px;
    font-size: 14px;
}

.button:hover {
    background: rgba(255, 153, 0, 1);
}

.button:active {
    margin: 0 0 0 3px;
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.8);
}

.button:disabled {
    background: gray;
}

a.button {
    display: inline-block;
    color: white;
    cursor: default;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    padding: 8px;
    line-height: 1.5;
    white-space: nowrap;
}