@font-face {
    font-family: "firacode";
    src: url(74c6684a17182dc6f5b4.otf);
}

body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #111;
    color: rgb(227, 179, 91);
}

#terminal {
    font-family: firacode;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: rgb(227, 179, 91);
    word-wrap: break-word;
    word-break: break-all;
    caret-color: transparent;
    resize: none;
    cursor: default;
}

#terminal:focus {
    outline-width: 0;
    background-color: #ffffff22;
}

#cursor {
    width: 8px;
    height: 16px;
    background: rgba(227, 179, 91, 0.3);
    position: absolute;
    z-index: -1;
}

.github {
    position: fixed;
    right: 10px;
    bottom: 10px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transition: 0.15s;
}

.github svg {
    color: white;
    height: 100%;
    width: 100%;
}

#github-visual {
    z-index: -2;
}

#github-hidden {
    z-index: 1;
    opacity: 0;
}

