:root {
    --text-color: #bb7c19;
}

* {
    box-sizing: border-box;
}

html {
    background-color: #000;
    font-family: 'Tilt Neon', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    overflow-y: scroll;
}

body {
    background-color: #22072b;
    color: var(--text-color);
    margin: auto;
    width: 900px;
    padding: 30px 50px;
}

.all-games {
    cursor: pointer;
    border: 3px solid var(--text-color);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Tilt Neon';
    background-color: #22072b;
    padding: 2px 10px;
    margin-right: 10px;
}

.tag-advanced {
    display: none;
    padding-left: 120px;
    padding-top: 20px;
}

.tag-advanced label,
.tag-list label {
    padding-right: 15px;
}

.game-list {
    list-style: none;
    padding: 0;
}

.game-item {
    cursor: pointer;
    padding: 20px;
    margin: 20px 0;
    background-color: #2d125d;
    border-radius: 20px;
    border: 3px solid var(--text-color);
}

.game-item.hidden {
    display: none;
}

.game-item img {
    vertical-align: top;
    width: 350px;
    border-radius: 20px;
    display: inline-block;
    border: 3px solid var(--text-color);
}
.game-item .column2 {
    display: inline-block;
    width: 400px;
    padding-left: 30px;
}

.game-item h2 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 35px;
}

.game-item p {
    font-size: 25px;
}

.game-tag {
    display: inline-block;
    height: 24px;
}

.game-tag::after {
    padding: 2px;
    border: white solid 2px;
    border-radius: 20px;
    padding: 1px 11px;
    font-size: 14px;
    margin: 0 5px;
}

.game-tag.VN::after {
    content: "Visual Novel";
    background-color: #5454ff;
    color: #ffffff;
}

.game-tag.PNC::after {
    content: "Point & Click";
    background-color: #44a359;
    color: #ffffff;
}

.game-tag.RPG::after {
    content: "RPG";
    background-color: #a92727;
    color: #ffffff;
}
.game-tag.PUZZLE::after {
    content: "Puzzle";
    background-color: #276da9;
    color: #ffffff;
}
.game-tag.HIATUS::after {
    content: "Hiatus";
    background-color: #000;
    color: #ffffff;
}
.game-tag.DEV::after {
    content: "In Development";
    background-color: #d57938;
    color: #ffffff;
}

.footer {
    font-size: 10px;
    border-top: 1px solid var(--text-color);
    text-align: right;
}
