#can {
    width: 100vw;
    height: 100vh;
    background: transparent;
}
.modal-body {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    font-family: "NeuzeitGro W01 Bold", sans-serif;
}
.game {
    margin-top: -27px;
}
.game button {
    background: #282A3A;
    color: #FFF;
    border-radius: 5px;
    padding: 10px 20px;
    border: 0;
    cursor: pointer;
    font-family: "NeuzeitGro W01 Bold", sans-serif;
    font-size: 18pt;
}
.disabled {
    color: #757575;
}
.stats {
    font-family: "NeuzeitGro W01 Bold", sans-serif;
    font-size: 14pt;
}
.board-container {
    position: relative;
    width: 100%;
}
.board,
.win {
    border-radius: 5px;
    background-color: #FFFFFF;
    transition: transform .6s cubic-bezier(0.4, 0.0, 0.2, 1);
    backface-visibility: hidden;
}
.board {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 6px;
}
.board-container.flipped .board {
    transform: rotateY(180deg);
}
.board-container.flipped .win {
    transform: rotateY(0) rotateZ(0);
}
.memory-card {
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 135%;
    cursor: pointer;
}
.memory-card-front,
.memory-card-back {
    position: absolute;
    border-radius: 7px;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.4, 0.0, 0.2, 1);
    backface-visibility: hidden;
}
.memory-card-front {
    background-image: url(../img/card-back.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.memory-card-back {
    transform: rotateY(180deg);
    width: 100%;
    height: 100%;
    user-select: none;
    text-align: center;
    line-height: 100px;
    background: #FDF8E6;
}
.memory-card.flipped .memory-card-front {
    transform: rotateY(180deg);
}
.memory-card.flipped .memory-card-back {
    transform: rotateY(0) rotateZ(0);
}
.win {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(126deg, rgba(242,242,242,0.35) 31%, rgba(211,211,211,0.35) 92%, rgba(255,255,255,0.35) 100%);
    text-align: center;
    transform: rotateY(180deg);
}
.win-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "NeuzeitGro W01 Bold", sans-serif;
    font-size: 70px;
    color: #1C232F;
    letter-spacing: -1.34px;
    text-align: center;
    line-height: 1.03;
    width: 80%;
}
.highlight {
    color: #A9D000;
}