body {
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    text-align: center;
    letter-spacing: 2px;
    background-color: #303030;
    color: #eee;
}

#container {
    padding-bottom: 40px;
}

h1 {
	font-size: 30px;
	margin: 60px;
}

h2 {
	font-size: 24px;
    margin: 20px;
}

.start_btn {
    height: 40px;
    width: 100px;
    font-size: 20px;
    margin: 30px;
    border: none;
    border-radius: none;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    cursor: pointer;
}

.modal {
	position: absolute;
	top: 0;
	bottom: 0;
    left: 0;
    right: 0;
    background-color: #303030;
    color: #eee;
}

#rounds_left {
    margin-bottom: 5px;
}

#info_container {
    padding: 20px;
}

.message {
    display: none;
    position: absolute;
    top: 250px;
    width: 100%;
    font-size: 40px;
}

canvas {
	margin: 0px auto 20px;

	border: 1px solid green;
}

#btn_container {
    width: 480px;
    margin: auto;
}

.guess {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    background-color: #aaa;
    color: #202020;
    margin: 2px;
    cursor: pointer;
}
.guess:active {
    background-color: #888;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
}

#links_container {
    padding: 10px 20px;
    text-align: left;
}

#links_container a {
    color: green;
    text-decoration: none;
    margin-right: 10px;
}

#links_container a:visited {
    color: green;
}

#links_container a:hover {
    color: #27eb00;
}