body {
    background: #4c9dcf;
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.hbox, .vbox {
    display: flex;
    justify-content: space-around;
}

.hbox {
    flex-direction: row;
}

.vbox {
    flex-direction: column;
}

.characters {
    width: 50%;
    height: 25%;
    margin: 15% auto;
    align-items: center;
}

.characters .char, .character .versus {
    padding: 10px;
}

.characters .char img {
    height: 200%;
    background: rgba(0,0,0,0.5);
    margin: 10px 0;

}

.characters .char .win, .characters .char .dontknow {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    width: 100%;
    height: 100px;
    background: #3254a8;
    color: white;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: block;
    margin: 10px 0;

}

#win_draw {
    background: #444;
    color: white;
    border: none;
    font-weight: bold;
}

.characters .char .dontknow {
    font-size: 16px;
    background: #333;
}

.tupperranking {
    vertical-align: middle;
    display: block;
    height: 32px;
    line-height: 32px;
    position: relative;
    margin-bottom: 5px;
}

.tupperranking .ranking {
    margin-right: 5px;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
}
.tupperranking .bar {
    position: absolute;
    top: 0px;
    left: -5px;
    height: 32px;
    background: rgba(0,0,255,64);
    z-index: -1;
}


@media only screen and (max-width: 1500px) {
    body {
        font-size: 5vw!important;
    }

    .characters .char .win, .characters .char .dontknow {
        font-size: 5vw!important;
        height: auto;
        width: 100%;
        margin: 10px;
    }

    .characters {
        display: block;
        width: 50vw;
    }
    .characters .char img {
        width: 100%;
        height: auto;
    }

    #win_draw {
        position: fixed;
        bottom: 0;
        left: 0;
        margin: 0;
        height: 10vh;
        font-size: 7vw;
        width: 100vw;
    }

    .versus {
        text-align: center;
    }

}