:root {
    --accent: #9B5DE5;
    --accent2: #8954ca;
}

* {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    font-family: sans-serif;
    place-items: center;
    margin: 0;
    height: 100vh;
}

h1 {
    margin-top: 30px
}

h2 {
    margin: 0;
}

h3 {
    margin-top: 20px
}

.row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.games {
    gap: 40px;
    place-content: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px
}

.col {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.wrap {
    flex-wrap: wrap;
}

.accent {
    color: var(--accent);
}

.accent-bg {
    padding: 5px 10px;
    background-color: var(--accent);
}

.game {
    gap: 5px;
    place-items: center;
    font-size: 20px;
    transition: 0.25s all ease-in-out;
}

.game img {
    border-radius: 15px;
    width: 150px
}

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

.game:hover {
    scale: 1.05;
    cursor: pointer;
}

button {
    font-size: 20px;
    background-color: var(--accent);
    color: white;
    border-style: none;
    padding: 5px 10px;
    transition: 0.25s background-color ease-in-out;
}

button:hover {
    background-color: var(--accent2);
}

.rounded {
    border-radius: 15px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }

    .game img {
        border-radius: 15px;
        width: 100px
    }
}