body {
    font-family: Arial, sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.cursor {
    animation: cursor 1s step-start infinite;
}

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

.rainbow-line {
    width: 100vw;
    margin: 0;
    position: relative;
    left: 0;
    background-image: linear-gradient(90deg,
            #f46b23 0%,
            #f46b23 20%,
            #fadd39 20%,
            #fadd39 40%,
            #6cc630 40%,
            #6cc630 60%,
            #4faeca 60%,
            #4faeca 80%,
            #2e6579 80%,
            #2e6579 100%);
    background-size: cover;
    background-attachment: fixed;
}

.top {
    height: 7.5vmin;
}

.banner {
    position: relative;
    padding: 7.5vmin;
    color: #6cc630;
    background-color: #001b06;
}

.text {
    font-family: "Source Code Pro", monospace;
    font-size: 7.5vmin;
}

.line {
    height: 1vmin;
}

ul {
    width: calc(100vw - 20vmin);
    padding-left: 10vmin;
    padding-right: 10vmin;
    margin-top: 5vh;
}

li {
    font-size: 2.2vh;
}

a {
    line-height: 2.5;
    color: black;
    text-decoration: none;
}

li:hover {
    text-decoration: underline;
}

li:hover > span.underline {
    text-decoration: underline;
}


span.underline {
    text-decoration: underline;
}