html{
    height: 100vh;
    width: 100vw;
}

body {
    margin: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-image: var(--background);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1;
}

.overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/crt_transparent.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
    pointer-events: none;
}

.overlay::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--crtfilter);
    z-index: 2;
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
}

.blur {
    filter: blur(0.4px);
    width: 100%;
    height: 100%;
}

li{
    font-size:24px;
    margin: auto;
    line-height:28px;
}

a:link {
    text-decoration: none;
    color: var(--zeldas);
}

a:visited {
    text-decoration: none;
    color: var(--zeldas);
}

a:hover {
    text-decoration: underline;
    color: var(--zeldas);
}

a:active {
    text-decoration: underline;
    color: var(--zeldas);
}