:root {
    --yellow: #ffee7e;
    --pink: #ff0050;
    --font-main: "Gaegu", sans-serif;
    --font-secondary: "Gaegu", sans-serif;
    font-weight: 700;
    font-style: normal;
}

::selection {
    color: #ffffff;
    background: #ff0050;
}

* {
    cursor: pointer;
}

a {
    cursor: help;
}

i {
    cursor: help;
    color: var(--font-secondary);
}

i:hover {
    cursor: help;
    color: black;
}

body {
    font-family: var(--font-secondary);
    font-size: 1em;
    /*background: url('assets/gabe.gif') repeat;*/
    margin: auto;
    text-align: center;
    background-color: var(--pink);
    word-wrap: break-word;
    font-family: var(--font-secondary);
}

.title {
    font-family: var(--font-main);
    width: 100%;
    height: 6em;
    background-color: var(--pink);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    margin-top: 2em;
}

.title a {
    text-decoration: none;
    color: var(--yellow);
    font-size: 3em;
}

.post-date p {
    text-align: left;
    font-size: 0.8em;
    margin-top: -1em;
    color: white;
}

.text_content {
    text-align: center;
    display: inline-block;
    max-width: 56ch;
}

.text_content p {
    text-align: left;
    max-width: 56ch;
}

.text_content h2 {
    text-align: left;
}

.content-blurb {
    text-align: center;
    display: inline-block;
}

.content-blurb p {
    text-align: left;
    max-width: 56ch;
}

.content-blurb h2 {
    text-align: left;
}

/*.game-thumbnails {
    display: inline-block;
}*/

.blog-posts {
    display: inline-block;
    list-style: none;
    text-align: left;
    margin-right: 12em;
}

.blog-posts a {
    background-color: black;
    color: white;
}

.game-thumbnails img {
    display: inline;
    width: 16em;
}

.blog-content {
    display: inline-block;
    text-align: left;
    margin-left: 12em;
    margin-right: 12em;
}

main {
    font-size: 2em;
    margin-left: 1em;
    margin-right: 1em;
}

main h2 {
    text-decoration: underline;
}

main a {
    color: var(--pink);
    background-color: var(--yellow);
}

nav a {
    font-family: var(--font-main);
    font-size: 24px;
    margin-right: 0px;
    padding: 5px 12px;
    display: inline-block;
    color: var(--yellow);
}

nav a:hover {
    color: var(--pink);
    background: var(--yellow);
}

footer {
    color: var(--yellow);
    background: var(--pink);
    font-size: 2em;
    margin-top: 3em;
    margin-bottom: 1em;
}

footer a {
    color: var(--yellow);
    background-color: var(--pink);
    cursor: help;
    text-decoration: underline;
}

footer a:hover {
    color: var(--link-background-color) !important;
    background-color: var(--link-color);
    text-decoration: underline;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: var(--yellow);
    border: 6px, dotted, var(--pink);
    z-index: 1;
}
.dropdown-content a {
    color: var(--pink);
    padding: 12px 16px;
    text-decoration: underline;
    display: block;
}

.dropdown-content a:hover {
    color: var(--yellow);
    background-color: var(--pink);
    padding: 12px 16px;
    text-decoration: underline;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
    text-align: left;
}
