@font-face {
    font-family: 'IntervalBoldSlanted';
        src: url('../fonts/interval.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Outfit';
        src: url('../fonts/outfit.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


:root {
    --background-color: #282a36;
    --font-color: #eff0eb;
}

* {
    font-family: Outfit;
    letter-spacing: 0.1em;
}

body {
    margin: 1em;
    font-size: 2em;
    background: var(--background-color);
    color: var(--font-color);
    line-height: 125%;
}

strong {
    font-weight: bold;
}

a {
    display: block;
    color: var(--font-color);
    text-decoration: none;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

a:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--font-color);
    text-decoration-thickness: 2px;
}

h1 {
    font-family: 'IntervalBoldSlanted';
    text-transform: uppercase;
    font-size: 0.5em;
    letter-spacing: 0.1em;
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: 3;
    column-gap: 5em;
}

ul li {
    position: relative;
}

ul li ul {
    padding: 0 0 0 2em;
    display: none;
    column-count: 1;
    max-width: 100%;
}

li.open ul {
    display: block;
}

button {
    font-size: 1em;
    border: none;
    color: var(--font-color);
    padding-left: 1.75em;
    outline: none;
}

button:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--font-color);
    text-decoration-thickness: 2px;
    cursor: pointer;
}

button.folder {
    background: url('../images/folder-24px.svg') no-repeat;
    background-size: 1.25em;
    background-position: 0 2px;
}

button.folder.open {
    background: url('../images/folder_open-24px.svg') no-repeat;
    background-size: 1.25em;
    background-position: 0 2px;
}

#date, #clock, #weather, #bookmarks {
    min-height: 1.5em;
}

#weather {
    margin: 1em 0;
}

#bookmarks {
    margin-top: 5%;
    font-size: 0.4em;
}