html {
    height: 100%;
    width: 100%;
    background: #eee;
}
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Roboto', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    overflow-x: hidden;
    overflow-y: hidden;
}
/* CLEARFIX */
.choice-wrapper, .choice {
    content: "";
    display: table;
    clear: both;
}


.wrapper {
    height: 100%;
    padding: 0 15px;
}
.choice-wrapper {
    width: 100%;
    max-width: 800px;
    height: 100%;
    margin: auto;
    position: relative;
}
.choice {
    width: calc(100% / 3);
    height: 100%;
    display: inline-block;
    text-align: center;
    position: relative;
}
.choice i {
    font-size: 100px;
    position: absolute;
    transition: 0.2s;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.choice i:hover {
    cursor: pointer;
    font-size: 150px;
}
.score {
    position: absolute;
    font-size: 100px;
}
.player-score {
    left: 20px;
    color: #4D4DFF;
}
.com-score {
    right: 20px;
    color: #FF1A1A;
}
.description {
    position: absolute;
    text-align: center;
    white-space: nowrap;
    top: 80%;
    left: 50%;
    transform: translateX(-50%) translateY(-80%);
}
.outcome {
    font-size: 30px;
}
.pstyle {
    font-size: 30px;
    color: #4D4DFF;
    padding-right: 10px;
}
.cstyle {
    font-size: 30px;
    color: #FF1A1A;
    padding-left: 10px;
}
.games-played {
    position: absolute;
    text-align: center;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.touchLarge {
    font-size: 150px !important;
}
.touchSmall {
    font-size: 120px !important;
}

@media (max-width: 767px) {
    .score {
        font-size: 50px;
        top: 15px;
    }
    .choice i {
        font-size: 70px;
    }
    .choice i:hover {
        font-size: 70px;
    }
    .outcome, .pstyle, .cstyle {
        font-size: 20px;
    }
    .description {
        top: initial;
        bottom: 20px;
        transform: translateX(-50%);
    }
}
