body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fcfcfc;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 0 20px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid black;
}

.header .logo {
    font-family: 'Pacifico', cursive;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo img {
    margin-right: 10px;
}

.game-list {
    margin-bottom: 50px;
}

.game-list>a {
    margin-right: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.game-list .game {
    border: 1px solid #ececec;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 150px;
    height: 150px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.game-list .game:hover {
    box-shadow: rgb(0 0 0 / 20%) 0px 2px 4px -1px, rgb(0 0 0 / 14%) 0px 4px 5px 0px, rgb(0 0 0 / 12%) 0px 1px 10px 0px;
}

.game-list .game .title {
    font-size: 18px;
    background-color: #ecececf0;
    padding: 10px;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.game-list a:hover {
    text-decoration: none;
}

.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid black;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: underline;
}