* {
    font-family: 'Fjalla One', sans-serif;
    font-family: 'Francois One', sans-serif;
    font-family: 'Kanit', sans-serif;
    font-family: 'Mochiy Pop P One', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: rgb(16, 22, 22);
    text-align: left;
    color: aliceblue;
    padding: 20px;
}

.title {
    font-size: 26px;
}

.container {
    background-color: rgb(32, 39, 39);
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
}

main.games {
    display: flex;
    padding: 32px;
}

main.games section.game {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: darkslategrey;
    padding: 32px 32px;
    border-radius: 10px;
    max-height: 468px;
    margin-left: 32px;
}

main.games section.game:first-child {
    margin-left: 0;
}

main.games section.game .icon {
    width: 100px;
    height: 100px;
}

main.games section.game img {
    width: 100%;
}

main.games section.game h3 {
    font-size: 100%;
    margin: 16px 0;
}

main.games section.game button {
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-size: 80%;
    font-weight: 500;
    background-color: rgb(11, 11, 177);
    color: white;
}

@media screen and (max-with: 720px) {
    main.games {
        flex-direction: column;
    }
    main.games section.game {
        margin-left: 0;
        margin-bottom: 32px;
    }
    main.games section.game:last-child {
        margin-bottom: 0;
    }
    main.games section.game button {
        font-size: 70%;
    }
}