body {
    background-color: #000;
    color: #00FF88;
    font-family: monospace;
    height: 100%;
    cursor: none;
    overflow: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE e Edge antigos */
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari e derivados */
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: none;
}

ul {
    list-style-type: none;
    padding-left: 25px;
    padding-top: 15px;
}

span {
    display: inline;
}

p,
p2 {
    display: block;
    margin: 0;
    padding: 0;
}

.terminal {
    height: 90%;
    float: left;
    border-width: 1px;
    border-color: #00ff88;
    display: none;
}

.console {
  height: 90%;
  width: 40%;
  overflow: hidden;
  float: right;
  border: 1px solid #00ff88;
  margin-top: 20px;
  display: none;
  padding-bottom: 10px;
}

.conteudo {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.conteudo::-webkit-scrollbar {
  display: none;
}

.cursor {
    display: inline-block;
    width: 8px;
    margin-left: 2px;
    background-color: #00ff88;
    animation: blink 0.8s steps(2, start) infinite;
}

.fade-out {
    animation: fadeOutAnim 1s forwards;
}

@keyframes fadeOutAnim {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes blink {
    to {
        visibility: hidden;
    }

}

#introScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 9999;
}