* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #5a5a5a;
}

img {
    cursor: pointer;
}

.flex-div {
    display: flex;
    align-items: center;
}

nav {
    padding: 10px 2%;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    position: sticky;
    z-index: 10;
}

.nav-right img {
    width: 25px;
    margin-right: 25px;
}

.nav-left img {
    height: 25px;
    margin-right: 25px;
}

.nav-left .menu-icon {
    width: 25px;
    margin-right: 25px;
}

.nav-middle .search-bar {
    border: 3px solid #ccc;
    margin-right: 15px;
    padding: 8px 12px;
    border-radius: 25px;
}

.nav-middle .search-bar input {
    width: 400px;
    border: 0;
    outline: 0;
    background: transparent;
}

.nav-middle .search-bar img {
    height: 25px;
}

.game-img {
    height: 250px;
}

.quick-access-bar {
    background: #fff;
    width: 15%;
    height: 100vh;
    position: fixed;
    top: 0;
    padding-left: 2%;
    padding-top: 80px;
}


.quick-access-bar a {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: fit-content;
    flex-wrap: wrap;
}

.quick-access-bar img {
    width: 25px;
    margin-right: 20px;
}

.quick-access-bar hr {
    border: 0;
    height: 3px;
    background-color: #ccc;
    width: 85%;
    margin-bottom: 25px;
}

.quick-access-bar .addition-info {
    position: absolute;
    bottom: 25px;
}

.quick-access-bar .addition-info p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.recent-list h3 {
    font-size: 15px;
    margin: 20px 0;
    color: #5a5a5a;
}

.recent-list a {
    display: flex;
    align-items: center;
    margin-bottom: 20 px;
    width: fit-content;
    flex-wrap: wrap;
}

.minimised-quick-access-bar {
    width: 5%;
}

.game-play .quck-access-content a p {
    display: none;
}

.game-play {
    background: #fff;
    width: 4%;
    height: 100vh;
    position: fixed;
    top: 0;
    padding-left: 2%;
    padding-top: 80px;
}

.game-play .flex-div {
    justify-content: space-between;
    margin-bottom: 15px;
}

.middle-container{
    padding-left: 25%;
    padding-top: 25px;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
    grid-template-rows: auto;
    gap: 10px;
}


.middle-container .game-thumbnail a img{
    width: 100%;
}

.game-thumbnail{
border: 1px solid #ddd;
border-radius: 2px;
padding: 5px;
width: 100%;
}

.game-thumbnail:hover{
    box-shadow: 0 0 8px 1px rgba(0,140,186, 0.5);
}