body {
    background-color: #000;
    color: rgba(0, 255, 0, 0.644);
    font-family: monospace;
}

#terminal {
    border: 2px solid rgba(0, 255, 0, 0.644);
    padding: 10px;
    margin: 20px;
}


p {
    font-size: 1.5em;

}

#prompt {
    display: inline;
}

#output {
    padding: 10px;
}

#typewriter {
    font-size: 30px;
    font-family: monospace;
    border-right: 1px solid black;
    animation: typing 1s steps(20, end) infinite;
}

.links {
    font-size: 1.5em;
    transition: all 0.2s ease-in-out;
    transform-origin: top left;

}

.links a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
}

.links:hover {
    font-size: 1.8em;
    transform: scale(1.2);
    margin-bottom: 0.5em;
}



@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

#typewriter::after {
    content: "|";
    animation: blink 0.7s steps(1) infinite;


}

@keyframes blink {
    50% {
        opacity: 0;
    }
}