@import url('fonts/fonts.css');

html {
    width: 100%;
    min-height: 100%;
    background-color: #016132;
    background-image: url('img/bg.png');
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 12pt;
    cursor: url('img/cursor.png'), default;
}

body {
    position: relative;
    top: 0;
    left: 0;
    width: 980px;
    height: 100%;
    background-color: white;
    margin: 0 auto;
    background: url('img/bggrass.jpg') no-repeat bottom, white;
    border-radius: 0 0 10px 10px;
}

header {
    text-align: center;
}


nav {
    display: table-cell;
    vertical-align: top;
    padding: 1em 0 3em 1em;
}

nav a {
    display: block;
    padding: 1rem;
    margin-bottom: .75rem;
    border-radius: 1rem;
    background-color: #016132;
    background-image: url('img/button.png');
    background-repeat: repeat-x;
    background-position: center right;
    font-family: 'Brady Bunch Remastered';
    font-size: 16pt;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 1px;
}

nav a:nth-child(even) {
    background-image: url('img/button-rev.png');
}

nav a.hoverhighlight:hover {
    background-color: #029a4f;
}

.main {
    display: table-cell;
    vertical-align: top;
    padding: 1em 1em 3em 1em;
}

.main a:link {
    color: #016132;
}

.main a:visited {
    color: #029a4f;
}

h2 {
    font-family: 'Brady Bunch Remastered';
    letter-spacing: 2px;
    font-size: 175%;
}

h3 {
    font-family: 'Brady Bunch Remastered';
    letter-spacing: 2px;
    font-size: 150%;
}

blockquote {
    margin: 1em;
    padding: 1em;
    border-radius: 1rem;
    background-color: #ddd;
}

p.question {
    color: #dd3;
}

ul {
    padding-left: 1em;
}

li {
    list-style-position: inside;
}

footer {
    display: block;
    position: absolute;
    bottom: 5px;
    /*background-color: white;*/
    padding: 0 1em;
    font-size: 75%;
}

.centered {
    text-align: center;
}

/* styles for Q&A */

#questions {
    padding: 2px;
    border: 3px solid #016132;
    border-radius: 1rem;
}

#question {
}

#question .question {
    color: #026cc1;
    padding: 0 1em;
}

#choices {
    display: block;
    list-style-type: none;
}

#choices li {
    display: inline-block;
    vertical-align: middle;
    padding: .5em;
    margin: 0 .5em;
    border: 3px solid rgba(255, 255, 255, 0);
    border-radius: .5rem;
}

#choices li img {
    width: 4em;
    height: 4em;
    vertical-align: middle;
}

#choices li.correct {
    border-color: #029a4f;
}

#choices li.incorrect {
    border-color: #9a0202;
}

#response .correctmsg {
    font-weight: bold;
    color: #029a4f;
}

#response .incorrectmsg {
    font-weight: bold;
    color: #9a0202;
}

#nextbutton:after {
    content: ' >';
}

#nextbutton, #gameslist a {
    display: block;
    padding: .25rem;
    margin: .5rem auto;
    border-radius: .5rem;
    border: none;
    background-color: #016132;
    font-family: 'Brady Bunch Remastered';
    font-size: 16pt;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 1px;
    cursor: pointer;
}

#gameslist {
    list-style: none;
}

#gameslist li {
    display: inline-block;
}