:root{
    --color-r: #FFAB00;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family: 'roboto', sans-serif;
    background-color: #f0f0f0;
}
h1{
    font-family: 'roboto', sans-serif;
}
.logo-container{
    background-color: var(--color-r);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 20px;
    color: #000;
}
nav ul a:hover {
    opacity: 0.6;
}
nav ul {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    justify-content: flex-end;
    width: 70%;
    min-height: 60px;
    align-items: center;
}
.main-nav{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin: 0px 2em 0px;
}

/* Card */
.games-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.game-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e4e4e4;
    padding: 20px 15px 20px;
}
