/* ++++++++++ Game ++++++++++ */
.game {
    height: 100%;
    width: 100%;
}
/* ++++++++++ Score ++++++++++ */
.game #match-score {
    overflow: auto;
    padding: 16px;
}
@media (max-width: 420px) {
    .game #match-score {
        max-width: 420px;
        text-align: center;
        width: 100%;
    }
}
.game #match-score * {
    color: #fff;
    display: inline-block;
    float: left;
    margin: 0;
}
@media (max-width: 420px) {
    .game #match-score * {
        font-size: 18px;
    }
}
.game #match-score .team {
    background-color: #000;
    border-top: 4px solid;
    height: 100%;
    text-align: center;
    padding: 8px;
    width: 100px;
}
@media (max-width: 420px) {
    .game #match-score .team {
        width: 70px;
    }
}
.game #match-score #home {
    border-top-color: #3F51B5;
}
.game #match-score #away {
    border-top-color: #F44336;
}
.game #match-score .score {
    background-color: #fff;
    border-top: 4px solid transparent;
    color: #000;
    height: 100%;
    text-align: center;
    padding: 8px;
    width: 50px;
}
@media (max-width: 420px) {
    .game #match-score .score {
        width: 40px;
    }
}
/* ++++++++++ Match Message ++++++++++ */
.game #match-message {
    display: table;
    height: 25%;
    width: 100%;
}
.game #match-message h1 {
    color: #fff;
    display: table-cell;
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: bottom;
}
@media (max-width: 820px) {
    .game #match-message {
        height: 10%;
    }
    .game #match-message h1 {
        font-size: 40px;
    }
}
@media (max-width: 720px) {
    .game #match-message {
        height: 10%;
    }
    .game #match-message h1 {
        font-size: 36px;
    }
}
@media (max-width: 620px) {
    .game #match-message {
        height: 10%;
    }
    .game #match-message h1 {
        font-size: 30px;
    }
}
@media (max-width: 520px) {
    .game #match-message {
        height: auto;
    }
    .game #match-message h1 {
        font-size: 24px;
    }
}
@media (max-width: 420px) {
    .game #match-message {
        height: auto;
    }
    .game #match-message h1 {
        font-size: 16px;
    }
}
/* ++++++++++ Weapons +++++++++ */
.game .weapons {
    margin: auto;
    max-width: 1000px;
    padding: 5% 0;
    text-align: center;
    width: 100%;
}
.game .weapons .card{
    cursor: pointer;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
    display: inline-block;
    height: 180px;
    margin: 8px;
    width: 180px;
}
@media (max-width: 420px) {
    .game .weapons .card {
        height: 125px;
        width: 125px;
    }
}
@media (min-width: 1000px) {
    .game .weapons .card:hover {
        background-color: #FFAB40;
        color: #fff;
    }
}
.game .weapons .card:active {
    background-color: #FF6D00;
    box-shadow: none;
}
.game .weapons .card article {
    height: 100%;
    padding: 16px;
    position: relative;
}
.game .weapons .card article img {
    bottom: 0;
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}
@media (max-width: 420px) {
    .game .weapons .card article img {
        height: 65px;
        width: 65px;
    }
}
.game .weapons .card article figcaption {
    bottom: 24px;
    left: 0;
    text-align: center;
    position: absolute;
    width: 100%;
}
@media (max-width: 420px) {
    .game .weapons .card article figcaption {
        bottom: 12px;
    }
}