@import './reset.css';

:root {
    --font-weight: 200;
    --bold-font-weight: 400;
    --link-weight: 200;

    --primary-text-color: #333;
    --secondary-text-color: #666;

    --title-color: var(--primary-text-color);

    --animation-duration: 0.5s;
    --animation-timing-function: ease;
    --link-bg-color: #eee;
}

* {
    /*font-family: sans-serif;*/
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-weight: var(--font-weight);
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

/**
 LAYOUT
 */

main {
    height: 100vh;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: var(--secondary-text-color);
    text-align: center;
    padding: 0.5rem;
}

.title {
    font-weight: var(--bold-font-weight);
}



