@media(min-width: 300px){


    body {
        font-family: sans-serif;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    }
    
    .game {
        text-align: center;
        margin: 0 50px;
    }
    
    .title {
        font-size: 35px;
        font-weight: 600;
        margin: 25px;
    }
    
    .question {
        font-size: 20px;
        font-weight: 600;
        margin: 25px;
    }
    
    .answer {
        display: inline-block;
        border: 1px solid #ddd;
        padding: 55px;
        min-height: 120px;
        font-size: 30px;
        vertical-align: top;
        width: 300px;
        margin: 15px;
        cursor: pointer;
        /* text-align: left; */
    }
    
    .answer.selected {
        border-color: #1E90FF;
        background-color:blue;
    }
    
    .game.revealed .answer.selected {
        border-color: #f00;
        background-color: #f00;
    }
    
    .game.revealed .answer.correct,
    .game.revealed .answer.selected.correct {
        border-color: #32CD32;
        background-color: #32CD32;
        color: #fff;
    }
    
    
    .submit {
        display: inline-block;
        cursor: pointer;
        padding: 15px 40px;
        background-color: #000;
        text-transform: uppercase;
        margin: 15px;
        font-size: 15px;
        color: #fff;
        font-weight: 600;
    }
    
    
    .next {
        display: none;
    }
    
    .game.revealed .next {
        display: inline-block;
    }
    .game.revealed .reveal {
        display: none;
    }
    
    
    
    
    
    .stats {
        position: relative; /* so I can use absolute positioning inside and have this be the reference container */
        text-align: left;
        font-size: 20px;
        font-weight: 600;
        margin: 25px 0;
    }
    
    .streak {
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .loading {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff url('loading.gif') no-repeat center;
        background-size: 50px;
        z-index: 999; /* Make sure it's over everything else */
    }
    
    .game.fetching .loading {
        display: block;
    }
    
    
    
    
    .intro {
        display: none;
        background-color: #1E90FF;
        position: fixed;
        top: 0;
        left: 0;
        color: #fff;
        font-weight: 600;
        width: 100%;
        height: 100%;
        z-index: 99;
    }
    
    .categories {
        display: none;
        max-width: 1000px;
    }
    
    .categories .instructions {
        font-size: 30px;
        margin: 25px;
    }
    
    .start,
    .category {
        display: inline-block;
        cursor: pointer;
        padding: 15px 60px;
        background-color: #000;
        font-size: 20px;
        margin: 10px;
    }
    
    .start {
        display: none;
        text-transform: uppercase;
    }
    
    /* Only show intro when we need it */
    .game.select_category .intro,
    .game.select_start .intro {
        display: block;
    }
    
    .game.select_start .start {
        display: block;
    }
    .game.select_category .categories {
        display: block;
    }
}

@media(min-width: 620px){
    body {
        font-family: sans-serif;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    }
    
    .game {
        text-align: center;
        margin: 0 50px;
    }
    
    .title {
        font-size: 35px;
        font-weight: 600;
        margin: 25px;
    }
    
    .question {
        font-size: 20px;
        font-weight: 600;
        margin: 25px;
    }
    
    .answer {
        display: inline-block;
        border: 1px solid #ddd;
        padding: 15px;
        min-height: 120px;
        font-size: 15px;
        vertical-align: top;
        width: 300px;
        margin: 15px;
        cursor: pointer;
        /* text-align: left; */
    }
    
    .answer.selected {
        border-color: #1E90FF;
    }
    
    .game.revealed .answer.selected {
        border-color: #f00;
    }
    
    .game.revealed .answer.correct,
    .game.revealed .answer.selected.correct {
        border-color: #32CD32;
        background-color: #32CD32;
        color: #fff;
    }
    
    
    .submit {
        display: inline-block;
        cursor: pointer;
        padding: 15px 40px;
        background-color: #000;
        text-transform: uppercase;
        margin: 15px;
        font-size: 15px;
        color: #fff;
        font-weight: 600;
    }
    
    
    .next {
        display: none;
    }
    
    .game.revealed .next {
        display: inline-block;
    }
    .game.revealed .reveal {
        display: none;
    }
    
    
    
    
    
    .stats {
        position: relative; /* so I can use absolute positioning inside and have this be the reference container */
        text-align: left;
        font-size: 20px;
        font-weight: 600;
        margin: 25px 0;
    }
    
    .streak {
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .loading {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff url('loading.gif') no-repeat center;
        background-size: 50px;
        z-index: 999; /* Make sure it's over everything else */
    }
    
    .game.fetching .loading {
        display: block;
    }
    
    
    
    
    .intro {
        display: none;
        background-color: #1E90FF;
        position: fixed;
        top: 0;
        left: 0;
        color: #fff;
        font-weight: 600;
        width: 100%;
        height: 100%;
        z-index: 99;
    }
    
    .categories {
        display: none;
        max-width: 1000px;
    }
    
    .categories .instructions {
        font-size: 30px;
        margin: 25px;
    }
    
    .start,
    .category {
        display: inline-block;
        cursor: pointer;
        padding: 15px 60px;
        background-color: #000;
        font-size: 20px;
        margin: 10px;
    }
    
    .start {
        display: none;
        text-transform: uppercase;
    }
    
    /* Only show intro when we need it */
    .game.select_category .intro,
    .game.select_start .intro {
        display: block;
    }
    
    .game.select_start .start {
        display: block;
    }
    .game.select_category .categories {
        display: block;
    }
}