* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 2.3em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: darkslateblue;
}

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

ul {
    list-style: none;
}

.gaming {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-items: center;
    gap: 18px;
    padding: 0 18px 32px;
}


p {
    text-align: center;
}

.products {
    display: none;
    margin-top: 32px;
}