html, * {
    cursor: url('./cursor.png'), default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body {
    font-size: 1.4rem;
    font-family: monospace;
    max-width: 900px;
    margin: auto;
    background: #111;
    color: #EEE;
}
button {
    background: none;
    font-family: monospace;
    border: 1px dashed #EEE;
    color: #EEE;
    cursor: pointer;
}
button:hover {
    border-style: solid;
}
button:focus {
    outline: 0;
}
a {
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    font-style: normal;
    color: #EEE;
}
a:hover {
    color:rgb(130, 255, 255);
    text-decoration: underline;
}
h2{
    margin-top: 3px;
}
pre {
    flex-grow: 1;
}
.center {
    position: fixed;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-bottom: 50px;
}
.artwork {
    display: block;
    margin: auto;
}
.iceberg {
    font-family: "Iceberg", sans-serif;
    font-weight: 400;
    font-style: normal;
}
@media (max-height: 700px) {
    .artwork {
        margin-bottom: 20px;
    }
}
