@import 'https://fonts.googleapis.com/css?family=Chewy';
@import 'https://fonts.googleapis.com/css?family=Caesar+Dressing';

* {
    margin: 0;
    padding: 0;
}
fb:login-button, #status {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    border: 2px solid #888888;
    background-color: #FFFFFF;
}
body {
    background-color: #2b669a;
    font-family: 'Chewy', Arial, sans-serif;
    font-size: 1.1em;
    letter-spacing: 1px;
}
@media only screen and (min-width: 820px) {
    canvas {
        border: 5px solid #000000;
        border-radius: 5px;
    }
}
#legal {
    z-index: 100;
    padding: 3px;
    margin: 5px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #2b669a;
    border-radius: 3px;
}
#legal a {
    color: #FFFFFF;
    text-decoration: none;
}
#legal ul {
    display: inline;
    list-style: none;
}
#legal ul li {
    display: inline;
}
#legal li:after {
    content: " | ";
}
#legal li:last-child:after {
    content: "";
}
#foot {
    width: 100%;
    background-color: #FFFFFF;
    position: absolute;
    bottom: 0;
    padding: 3px;
}


#orientationWarning {
    color: #000000;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    border-top: 2px solid #000000;
    background-color: coral;
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 130%;
    z-index: 200;
}
@media only screen and (orientation:portrait) {
    #container {
        display:none;
    }
    #orientationWarning {
        display:block;
    }
}
@media only screen and (orientation:landscape) {
    #orientationWarning {
        display:none;
    }
}