
* { touch-action: manipulation; }

html {
    height: 100%;
}

body {
    background-color: #f5f5f5;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 10px;
    height: 100%;
}

p {
    line-height: 100%;
    padding: 0px;
    margin:0px;
}
strong {
    font-weight: 700;
}

#app {
    height: 100%;
}
#holder {
    overflow: hidden;
}
#block {
    display: inline-block;
}

#grid {
    width: 90%;
    display: inline-block;

}


.cell {
    display: inline-block;
    max-width: 150px;
}
.cell.dance {
    max-width: 60%;
}

.cell img {
    background-color: #e5e5e5;
    outline: 2px solid #f5f5f5;
    outline-offset: -1px;
}

.flipped {
    transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -khtml-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
}

.blue .cell.color-1 img { background-color: #ffd65a; }
.blue .cell.color-2 img { background-color: #ff9f55; }
.blue .cell.color-3 img { background-color: #066597; }
.blue .cell.color-4 img { background-color: #26355d; }
.blue .cell.color-5 img { background-color: #94c25a; }

.red .cell.color-1 img { background-color: #c51010; }
.red .cell.color-2 img { background-color: #ba3ebc; }
.red .cell.color-3 img { background-color: #8f154a; }
.red .cell.color-4 img { background-color: #e14f4f; }
.red .cell.color-5 img { background-color: #d28f8f; }




img {
    width:100%;
}

#line-2 {
    font-weight: bold;
}
#line-5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 250%;

}
@media only screen and (max-width: 600px) {
    #line-5 { font-size: 12px; }
}
@media only screen and (max-width: 400px) {
    #line-5 { font-size: 10px; }
}

#refresh {
    background-image: url('refresh.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 0px;
}
#refresh:hover {
    transform: rotate(30deg);
}



.footer {
    background-color: white;
}
.footer p {
    margin: 0px;
}
.footer a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.footer a:hover {
    text-decoration: underline;
}
