/*
    Copyright (C) 2016  j

    This file is part of counter-game
    
    counter-game is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    counter-game is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
body {
    font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
    background-color: #eeeeee;
}

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

a:hover {
    text-decoration: underline;
}

#site-wrapper {
    width: 600px;
    margin: 40px auto;
    padding: 0 30px;
    border: 5px solid #aaaaaa;
}

#game-container {
    width: 550px;
    margin: 0 auto;
}

#question-container {
    width: 500px;
    height: 300px;
    margin: 0 auto;
}

#counter-display {
    float: left;
    padding-top: 50px;
}

#counter {
    font-size: 125px; 
}

#multiplication {
    font-size: 80px;
    color: #888888;
    padding-left: 20px;
}

#thing-display {
    float: right;
}

#thing {
    width: 250px;
    height: 250px;
    border: 3px solid black;
}

#thing-desc {
    text-align: center;
    color: #888888;
}

#answer-container {
    margin: 0 auto;
    width: 500px;
    height: 100px;
}

#answer-form {
    padding-top: 30px;
}

#answer-input {
    font-size: 25px;
}

#footer {
    color: #aaaaaa;
}