html {
    overflow-x: hidden; 
    line-height: 1;
}

.games {
    width: 85vw;
    height: 200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    border-radius: 15px;
}

.banner {
    height: 160px;
    width: 342px;
    border-radius: 15px;
    position: absolute;
}

.info {
    position: relative;
    left: 352px;
    width: calc(100% - 342px);
    height: 160px;
    top: 20%;
    display: flex;
    flex-direction: row;
}

.item {
    width: 30%;
    margin-bottom: 10px;
    flex: 1;
    text-align: center;
    align-items: center;
}

.gamename {
    position: relative;
    font-size: 30px;
    left: 352px;
    top: 30px;
    color: white;
}

/* Mobile version */
@media (max-width: 768px) {
    .games {
        width: 100%;
        height: 190px;
        border-radius: 0px;
    }
    
    .banner {
        width: 100px;
        height: 150px;
        border-radius: 0px;
    }
    
    .info {
        position: relative;
        left: 120px;
        width: calc(100% - 120px);
        height: 190px;
        top: 0%;
    }
    
    .item {
        display: inline-block;
        margin-right: 20px;
        margin-bottom: 10px;
        vertical-align: top;
        text-align: left;
    }
    .gamename {
        font-size: 20px;
        color: white;
        display: none;
    }

    .stats {
        display: none;
    }
}

.background-image {
    position: fixed;
    top: 100;
    left: 0;
    width: 100%;
    z-index: -1;
}

progress {
    width: 100%;
}

a {
    text-decoration: none;
    color: white;
}
