body {
    background-color: var(--white);
}

.container {
    background-color: rgba(255, 255, 255, 0.55);

}

ul li {
    list-style-type: none;
}

header h1 {
    padding-top: 1rem;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
    animation: glow 2500ms alternate infinite ease-in;
    font-size: 5rem;
    letter-spacing: 0.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue-dark);
}

@keyframes glow {
    0% {
        text-shadow: 2px 2px 1px var(--cyan), 0px -0px 2px var(--primary);
    }

    100% {
        text-shadow: 2px 2px 3px var(--primary), 0px -0px 5px var(--cyan);
    }
}

@keyframes cycleBackgroundColor {
    0% {
        background-color: var(--white);
    }
    25% {
        background-color: var(--cyan);
    }
    50% {
        background-color: var(--green);
    }
    75% {
        background-color: var(--yellow);
    }
    100% {
        background-color: var(--white);
    }
}

.title {
    font-weight: bold;

    padding-bottom: 0.2em;
    position: relative;
 
    text-shadow: 2px 2px 1px var(--white), -1px -1px 2px var(--white);
}

.title:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 1rem;
    text-align: center;
    filter: blur(15px);
    text-shadow: 1px 1px 1px var(--white), -1px -1px 2px var(--white);
}

.title:hover:after {
    animation: cycleBackgroundColor 2500ms alternate infinite ease-in-out;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
}

header canvas {
    left: inherit;
}

main {
    position: relative;
    z-index: 2;
}
