/*
Style of the page. Only graphical rules here.
 */

body {
    background-image: linear-gradient(to bottom, rgba(0,10,78,1.0), rgba(90,100,140,1.0));
    background-repeat: no-repeat;
}

div#main {
    width: 100%;
    min-height: 800px;
}

div#title {
    width:80%;
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
}

div#title h1 {
    font-family: courier, monospace;
    font-size: 60px;
    color: aliceblue;
}

div#game {
    font-family: courier, monospace;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    color: ghostwhite;
}

div#game #description {
    width: 100%;
    margin-bottom: 20px;
}

div#game #screen {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

div#game #screen #score {
    font-size: 20px;
}

div#game #screen #score #points {
    font-weight: bolder;
}

div#game #control {
    width: 50%;
    margin-left: 25%;
    margin-right: 50%;
    margin-top: 10px;
    text-align: center;
}

div#game #control select {
    font-family: courier, monospace;
    font-size: 20px;
    width: 150px;
    height: 30px;
    padding-left: 10px;
    background-color: black;
    color: rgba(15,140,0, 1.0);
    border: 2px solid ghostwhite;
    border-radius: 10px;
}

div#game #control select option:hover {
    background-color: ghostwhite;
}