ul {
    list-style-type:none;
}

#menuScreen {
    background-image: url('../images/gate.png');
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    height: 100%;
    /* Preserve aspect ratio */
    min-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;    
}

#gameScreen {
    background-image: url('../images/brown_ice_by_darkwood67.jpg');
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    height: 100%;
    /* Preserve aspect ratio */
    min-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;
    font-family: 'Asul', sans-serif;    
}

#timer {
    font-family: 'Kavoon', cursive;
    font-size: 50px;
    text-align: center;
    color: brown;
}

.score {
    font-size: 50px;
    text-align: center;
}

#OverScreen {
    background-image: url('../images/shore.png');
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    height: 100%;
    /* Preserve aspet ratio */
    min-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;    
}

#creditsScreen {
    background-image: url('../images/wizardtower.png');
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    height: 100%;
    /* Preserve aspet ratio */
    min-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;
    
}

.btn {
    display: block;
    width: 180px;
    margin: 0 auto;
    height: 40px;
    line-height: 20px;
    border: 2px solid grey;
    color: black;
    font-weight: bold;
    text-shadow: 2px 2px 0 grey, 2px 2px 0 grey;
    background-color: #009900;
    background-image: -webkit-linear-gradient(left, #009900 40%, #66ff66 100%);
    background-image: linear-gradient(to left, #009900 40%, #66ff66 100%);
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
}

#menuWrapper {
    display: block;
    margin-top: 22%;
}

.btn:hover {
    background-color: #12ee80;
    background-image: -webkit-linear-gradient(left, #66ff66 40%, #009900 100%);
    background-image: linear-gradient(to left, #66ff66 40%, #009900 100%);
}

h1 {
    font-family: 'Kavoon', cursive;
    font-size: 100px;
    color: #93ec8b;
    text-shadow: 6px 6px #000000;
    text-align: center;
}

/* Scrolling Credits */

.marquee {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 40s linear infinite;
}

/* Make it move! */

@keyframes marquee {
    0% {
        top: 38em
    }
    100% {
        top: -50em
    }
}

/* Make it look pretty */

.microsoft .marquee {
    margin: 0;
    padding: 0 1em;
    line-height: 1.5em;
    font-family: 'Asul', sans-serif;
    font-size: 40px;
    text-align: center;
}

.microsoft:before,
.microsoft::before,
.microsoft:after,
.microsoft::after {
    left: 0;
    z-index: 1;
    content: '';
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 2em;
    background-image: linear-gradient(180deg, #FFF, rgba(255, 255, 255, 0));
}

.microsoft:after,
.microsoft::after {
    bottom: 0;
    transform: rotate(180deg);
}

.microsoft:before,
.microsoft::before {
    top: 0;
}

#creditsScreen {
    overflow: hidden;
}

.title {
    color: #f0abd5;
}

.highlight {
    color: gold;
}

.thanks {
    color: #78f4fd;
}

.plain {
    color: white;
}

#gameBox {
    background-color: gray;
    border: #000000 5px solid;
    margin: 0 auto;
    color: white;
    font-size: 40px;
    height: 100%;
    min-height: 750px;
    margin-top: 50px;
}

.answer, #flavorDiv{
    text-align: center;
    margin-bottom: 20px;
}

.answerBtn {
    width: 400px;
    height: 200px;
    background: url(../images/buttonStock1.png) no-repeat;
    min-width: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: grey 2px solid;
    color: white;
    margin: 0 auto;
    font-size: 2.5vh;
    margin-right: 10px;
}

.answerBtn:hover {
    background: url(../images/buttonStock1h.png) no-repeat;  
    width: 400px;
    height: 200px;
    min-width: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: grey 2px solid;
    color: white;
    margin: 0 auto;
    font-size: 2.6vh;
    margin-right: 10px;
}

.question {
    font-size: 70px;
    text-align: center;
    margin-bottom: 50px;
}

#score, #hiscore {
    border: #000000 4px solid;
    background-color: brown;
    color: white;
}

#results, #gotHighScore, #playAgain {
    text-align: center;
    color: white;
    font-family: 'Fruktur', cursive;
    font-size: 30px;
}