@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: #f3f3ee;
    color: #333;
    font-family: 'Merriweather', serif;
    line-height: 1.7em;
    margin: 0;
}

.text-muted {
    color: #aaa;
}

a {
    color: #090;
    text-decoration: none;
}

p a {
    text-decoration: underline;
}

a:hover {
    color: #090;
    text-decoration: underline;
}

a:visited {
    color: #060;
}

a:visited:hover {
    color: #0a0;
}

h1 {
    margin-bottom: 16px;
}

h2 {
    margin-top: 32px;
    margin-bottom: 4px;
}

h3 {
    margin-bottom: 4px;
}

p {
    margin-top: 4px;
}

ul {
    padding-bottom: 6px;
}

.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 32px;
    box-shadow: 3px 3px 4px #ccc;
    min-height: 100vh;
}

ul.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.nav li {
    display: inline;
    margin-right: 0.5rem;
}

.vimeo-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.vimeo-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.gamelinks a {
    padding-right: 0.5em;
}

@media print {
    body {
        background: #fff;
        color: #000;
        font-size: 0.8em;
        line-height: 1.5em;
    }

    a, a:visited, p a, p a:visited {
        text-decoration: none;
        color: #000;
    }

    .container {
        background: #fff;
        color :#000;
        padding: 0;
        box-shadow: 0 0;
    }

    .nav {
        display: none;
    }
}