:root {
    font-size: 16px;
    /*font-family: 'Inconsolata', monospace;*/
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f4f3e2;
    height: 100svh;
}

main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

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


#main-list {
    list-style-type: none;
    /*transition: padding-bottom-top 0.2s ease-in-out, padding-bottom 0.2s ease-in-out;*/
}


#main-list li {
    font-size: 3.4rem;
    /*transition: transform ease-in-out 3s;*/
    margin-top: 3rem;
    margin-bottom: 3rem;
    /*text-align: right;*/
}

@media (max-width: 500px) {
    #main-list li {
        font-size: 3rem;
    }
}


#main-list li a {
    text-decoration: none;
    color: #000000;
    transition: color 0.15s ease-in-out;
    letter-spacing: 7px;
}

#main-list li a:hover {
    color: rgb(26, 103, 189);
}


#copyright {
    position: fixed;
    font-size: 1.25rem;
    bottom: 0;
    /*right: 0;*/
    margin: 2.5rem;
}

@media (max-width: 500px) {
    #copyright {
        /*display: none;*/
        margin: 0;
        font-size: 1rem;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
}
