html,
body {
    margin: 0;
    padding: 0;

    background-color: hsl(0, 0%, 25%);
    font-family: Arial, sans-serif;
    color: whitesmoke;

    /* Remove scrollbars */
    -ms-overflow-style: none; /* IE and Edge */
    
    /* Custom Scrollbar (WebKit browsers only) */
        /* width */
        ::-webkit-scrollbar {
            width: clamp(6px, 1vw, 8px);
        }
    
        /* Track */
        ::-webkit-scrollbar-track {
            background: hsl(0, 0%, 15%);
        }
    
        /* Handle */
        ::-webkit-scrollbar-thumb {
            background: hsl(0, 0%, 5%);
            border-radius: 2px;
        }
}

main {
    margin: 10px;
    padding: 0 2vw 0 2vw;
}

a {
    color: hsl(268, 100%, 70%);
    text-decoration: none;
    font-style: italic;
    font-weight: bold;
}

#toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
    border-radius: 4px;

    background-color: hsla(0, 0%, 0%, 0.6);
    
    a {
        color: hsla(64, 100%, 90%, 0.8);
        text-shadow: 1px 1px 2px rgb(0, 0, 0);
        font-weight: bold;
        font-size: 1.1em;
    }
}