#terminal {
    font-family: "Courier New", Courier, Consolas, monospace;
    font-size: 1rem;
    padding: 0 0 4rem 0;
    animation-name: fade-in;
    animation-duration: 1s;
}

#terminal-header {
    display: flex;
    justify-content: space-between;
    height: 1.75rem;
    padding: 0 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    align-items: center;
    color: black;
    background: #f2f2f2;
    border-style: none;
    border-radius: 0.5rem 0.5rem 0 0;
}

#terminal-content {
    padding: 1rem 0.75rem;
    background: #272822;
    border-style: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

#terminal-content.light {
    background: #fdf6e3;
}

.terminal-button {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    padding: 0.25rem;
    border-style: none;
}

#close-terminal {
    background-color: #ff4d4d;
}

#minimise-terminal {
    background-color: #ffc14d;
}

#enlarge-terminal {
    background-color: #4dff4d;
}

.input {
    color: #f92672;
    margin: 0 0 0.5rem 0;
}

.input.light {
    color: #2aa198;
}

.output {
    color: #ddfaff;
    margin: 0 0 0.75rem 2.5rem;
}

.output.light {
    color: #fb6a9f;
}

.link {
    color: #66d9ef;
    text-decoration: none;
}

.link.light {
    color: #ae81ff;
}

.link:hover {
    text-decoration: underline;
}


#HelloWorld {
    display: inline-block;
    border-right: .15rem solid lightgray;
    animation: cursor 1s step-end infinite;
}

@keyframes cursor {
    from, to {
        border-color: transparent;
    }

    50% {
        border-color: lightgray;
    }
}

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

    to {
        opacity: 100%
    }
} 