:root {
    color-scheme: dark;
}
html, body{
    margin: 0;
    height: 100vh;
}
body {
	background: rgb(49,27,146);
	background: linear-gradient(90deg, rgba(49,27,146,1) 0%, rgba(81,45,168,1) 100%);
}

a:link, a:visited {
    font: italic 5em hack, sans-serif;
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
}
a:hover{
    text-decoration: none;
}
a:active {
    transform: translateY(10px);
}
a:link::before {
    content: "";
    background-color: #FFFFFF;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .5s ease-in 0s;
}
a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

@media screen and (max-width: 600px) {
    a:link, a:visited {
        font-size: 2em;
    }
    #linksListC {
        width: 100%;
        background: rgb(0,0,0);
        background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    }
}

#nameOutline {
    font-family: Yellowtail;
    font-size: 15em;
    letter-spacing: 50px;
    fill: none;
    stroke: #FFF;
    stroke-width: 1px;
    user-select: none;
}

#lunarCorner {
    height: 600px;
    width: 500px;
    position: fixed;
    bottom: -50px;
    right: -50px;
    z-index: -9999;
}

#linksListC {
    height: 100%;
}
#linksList {
    position: fixed;
    left: 50px;
    bottom: 0px;
}