html {
    background-color: black;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

:root {
    --font-size: 17px;
    --line-space: 12px;
    --color: #40ff99;
    --accent-color: #ff68ac;
  }

  *, *::before, *::after {
    font-family: monospace;
    font-size: var(--font-size);
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: monospace;
    color: var(--color);
    font-size: var(--font-size);
}

#textarea {
    display: flex;
    justify-content: flex-end;

    height: 30px;
    padding-top: 0px;
    margin-top: 0px;

    color: var(--color);
    background-color: rgb(0, 0, 0);
    border-color: transparent;
    outline: none;

    font-size: var(--font-size);
    position: relative;
    bottom: 8.5px;
    right: 3px;
    text-wrap: nowrap;
    overflow: hidden;
    resize: none;
}

#current-line {
    display: flex;
    justify-content: left;
    margin-top: 0px;
    padding-top: var(--line-space);
    height: var(--font-size);
}

#textarea-container {
    display: flex;
    justify-content: left;
}

#caret {
    position: relative;
    bottom: 8px;
    color: var(--color);
    font-size: var(--font-size);
}

#current-text {
    line-height: calc(var(--font-size) + var(--line-space));
}

#line-default {
    width: auto;
    padding-top: 0px;
    margin-top: 0px;
    position: relative;
    bottom: 7.5px;
    font-size: var(--font-size);
}

textarea:focus {
    caret-color: transparent;
    font-size: var(--font-size);
  }

#top-text {
    line-height: calc(var(--font-size) + var(--line-space));
}

a {
    color: var(--color);
    font-size: var(--font-size);
}

a:link,  /* unvisited link */
a:visited,  /* visited link */  /* mouse over link */
a:active,  /* selected link */
a:focus {  /* link with keyboard focus */
    color: var(--accent-color);
  /* color: var(--accent-color);  Replace with your desired color (e.g., black) */
  text-decoration: none; /*  Optional: removes the underline */
}

a:hover {
    /* color: var(--accent-color); */
    color: var(--accent-color);
    font-weight: bold;
    font-size: var(--font-size);
}

#color-white {
    color: var(--accent-color);
}

#name {
    display: flex;
    justify-content: center;
}

#name pre {
    font-size: 18px;
    line-height: 27px;
}

@media (max-width: 1200px) {
    #name pre {
        font-size: 1.5vw;
        line-height: 2.25vw;
    }
  }

#menu {
    display: flex;
    justify-content: space-around;
}