main {
    display: flex;
    flex-direction: column;
}

.game {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #fff4;
    background-color: #fff;
    margin-bottom: 15px;
}

.game h4 {
    font-size: 22px;
}

.game .img-box {
    width: 15%;
    min-width: 150px;
    max-width: 170px;
    border-radius: 50%;
    border: 3px solid #000;
    overflow: hidden;
}

.game .img-box::before {
    padding-top: 100%;
}

.inst {
    font-size: 17px;
}

.desc {
    font-size: 15px;
}

.desc a {
    display: none !important;
}

.desc span,
.inst span {
    text-indent: 2rem;
    color: #666;
    font-size: 15px;
}

.desc i,
.inst i {
    font-weight: 700;
}

.play {
    padding: 10px 30px;
    border: 1px solid rgba(0, 0, 0, 0.445);
    transition: .3s;
}

.play:hover {
    color: #fff;
    background-color: #000;
    border-color: #fff4;
}