@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


html{
    font-family: "Roboto", sans-serif;
}
.wrapper{ 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}
.page-title{
    text-align: center;
}
.list-container {
    display: flex;
    justify-content: center;
    justify-items: start;
    gap: 10px;
    flex-wrap: wrap;
}
.list-item{
    background-color: #f7f7f7;
    border-radius: 10px; 
    transition: all .2s linear;
}
.list-item:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.list-item img{ 
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: auto;
    height: 250px;
    width: 250px;
}
a.list-item{ 
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
}
.gametitle{
    padding: 5px 10px 5px 10px;
}