body{
    font-family: 'Yanone Kaffeesatz', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    display: flex;
    width: 60vw;
    height: 100vh;
    align-items: center;
    flex-direction: column;
}
main{
    width: 99%;
}
#gridContainer{
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: 100px auto 100px 100px 100px;
    gap: 10px;
}

.item{
    background-color: lightgrey;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    height: 50px;
    border-radius: 10px;
}
.header{
    background-color: #db3c36;
    color: white;
    font-size: 20px;
    height: 50px;
    border-radius: 10px;
}
header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
h1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3.5em;
    margin-right: 100px;
}
.title{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-left: 400px;
    padding-bottom: 20px;
}
p{
    margin: 0px;
}
.game{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 40px;
}
.gameItem{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 200px;
    height: 200px;
    border: none;
    border-radius: 10px;
    background-color: white;
}
.gameItem:hover{
    background-color: rgba(219, 60, 54, 0.27) !important;
}
.gameIcon{
    width: 120px;
    height: 120px;
}
.category{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}
select{
    border: none;
    background-color: #e5e5e5;
    width: 250px;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
}
