:root {
    --cyan: #5bcefa;
    --pink: #f5a9b8;
    --pink-darker: #c48b96;
    --cyan-darker: #50a7cb;
}

body {
    background-color: #EEEEEE;
    font-family: Helvetica, sans-serif;
    color: #2F2F2F;
}

body::-webkit-scrollbar {
    width: 18px;
    background: var(--cyan);
}

body::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 6px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--pink-darker);
}

h1.title {
    margin-bottom: 0;
}

p.subtitle {
    font-style: italic;
    margin-top: 0;
}

html{
        cursor: url('cursor.gif');
      }