body {
    font-family: Kode Mono, monospace;
    margin: 0;
    padding: 4rem;

    /* background: linear-gradient(135deg, #feffff, #bfc3ff96);
    height: 100vh;
    margin: 0; */
}

h1 {
    color: #343436;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

h1:hover {
    color: #868ef7;
    font-style: italic;
    letter-spacing: 0.12em;
}

.underline-link {
    position: relative;
    text-decoration: none;
    color: #333;
}

.underline-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #868ef7;
    transition: width 0.3s ease;
}

.underline-link:hover::after {
    width: 100%;
}

/* canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
} */