@font-face { font-family: Cascadia Code; src: url(Cascadia.ttf); } h1,h2,h3,h4,h5,h6,p,pre,a,ul,li,main,textarea{ font-family: Cascadia Code !important; }

html, body {
    background-color: #0c0c0c;
    color: #f2f2f2;
    text-align: center;
    color: #f2f2f2;
    font-family:'Courier New', Courier, monospace;
    font-family: Cascadia Code;
    overflow-x: hidden;
    cursor: default;
}

.logo {
    padding-top: 70px;
    font-size: large;
    font-family: Cascadia Code;
}

#logo {
    line-height: 1.1;
    margin:0; padding:0;
    letter-spacing: -0.03vw;
    white-space: pre-wrap;            /* css-3 */
	white-space: -moz-pre-wrap;   /* Mozilla */
	white-space: -pre-wrap;          /* Opera 4-6 */
	white-space: -o-pre-wrap;      /* Opera 7 */
	word-wrap: break-word;         /* Internet Explorer 5.5+ */
    font-family: Cascadia Code;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.downloadButton, .sorryMobile {
    display: none;
    padding-top: 20px;
}

.menu {
    visibility: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 50px;
}

.menu pre {
    bottom: 0px;
    margin: 50px;
}

.charisma {
    color: #d34451;
}

.code {
    color: #a60492;
}

.charisma:hover {
    background-color: #0c0c0c;
    color:#d34451;
    cursor: default;
}

.info {
    color: #6e6e6e;
}

.instructions {
    visibility: hidden;
    padding-top: 20px;
}

span:hover {
    background-color: #767676;
    color:#e4dc98;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .logo {
        width: 100%;
    }

    #logo {
        font-size: 2vw;
        letter-spacing: -0.3px;
        /*font-size: 8px; /* no idea why thhis works but it does*/
    }

    .menu {
        flex-direction: column;
        justify-items: space-between;
        height: 30vh;
    }
    .menu pre {
        margin: auto;
    }

    .sorryMobile, .instructions {
        padding-top: 30px;
    }

    span:hover {
        background-color: unset;
        color: unset;
    }
}