#confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

main {
    flex: 1;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;

    /* Does this even do anything? */
    scroll-behavior: smooth;
}

a {
    background-image: linear-gradient(180deg, rgba(110, 110, 255, 1) 30%, rgb(170, 170, 255) 80%);
    color: transparent;
    background-clip: text;
}

a:hover {
    text-decoration: underline;
    color: #8585FF;
}

.lead a {
    transition: color 0.6s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}