body {
    background-color: #fff;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
}

a:link {
    color: #000;
}

a:visited {
    color: inherit;
}

a:hover {
    color: #ff9898;
}

a:active {
    color: #ffffff;
}

#main {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

#main a.enter {
    text-decoration: none;
    font-family: 'Handjet', cursive;
    font-size: 1.5em;
    text-align: center;
}

#main a.enter::before {
    content: '\2022\2022\2022\25ba';
    font-family: 'Open Sans', sans-serif;
    color: #ff9a9a;
    font-weight: bold;
    letter-spacing: 0.1em;
    width: 1em;
    margin-right: 0.25em;
}

#main a.enter::after {
    content: '\25c4\2022\2022\2022';
    font-family: 'Open Sans', sans-serif;
    color: #ff9a9a;
    font-weight: bold;
    letter-spacing: 0.1em;
    width: 1em;
    margin-left: 0.25em;
}

#main a.enter:hover::before {
    color: #9298ff;
}

#main a.enter:hover::after {
    color: #9298ff;
}

#main a.enter:active::before {
    color: #fff;
}

#main a.enter:active::after {
    color: #fff;
}

#footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    font-size: 0.75em;
}

#footer p {
    margin: 0.25em 0;
}

.center {
    text-align: center;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1e1e1e;
        color: #fff;
    }

    a:link {
        color: #fff;
    }
}

/* Mobile first queries */

/* Mobile */
@media (max-width: 549px) {
    #main a.enter {
        font-size: 2em;
    }
}
  
/* Tablet */
@media (min-width: 550px) and (max-width: 749px) {
    #main a.enter {
        font-size: 2.5em;
    }
}
  
/* Phablet */
@media (min-width: 750px) and (max-width: 999px) {
    #main a.enter {
        font-size: 3.75em;
    }
}
  
/* Tablet/Desktop */
@media (min-width: 1000px) {
    #main a.enter {
        font-size: 5em;
    }
}