:root {
    --dark: #484848;
    --medium: #989898;
    --light: #fefefe;
    --accent: #f392a0;
}

body {
    background-color: var(--light);
    color: var(--dark);
    font-family: 'Rubik', sans-serif;
}

.red {
    color: red;
}

ul {
    font-size: 1.1rem;
    list-style: none;
}

ul.nav {
    width: fit-content;
    margin: 0 0 1rem;
    padding: 0;
    overflow: hidden;
}

li {
    margin-bottom: 0.5rem;
}

li.nav {
    float: left;
    margin: 0 1px 0 0;
    padding: 0.5rem 0.75rem;
    background-color: var(--dark);
    color: var(--light);
}

.is-hidden {
    display: none;
}

button {
    background-color: var(--dark);
    color: var(--light);
    border-radius: 4px;
    font-size: 1.1rem;
    margin: 1rem 0 2rem 0;
}

input[type="file"] {
    border-color: var(--dark);
    border-radius: 4px;
    font-size: 1.1rem;
}

.button-type {
    /* Box model */
    display: inline-block;
    /* Allows padding and margin to be applied correctly */
    padding: 0.25rem;
    /* Adds space around the text */
    text-align: center;
    /* Centers the text */

    /* Appearance */
    background-color: var(--dark);
    /* Button background color */
    color: var(--light);
    /* Text color */
    border: 1px solid var(--dark);
    /* Button border */
    border-radius: 5px;
    /* Rounded corners */
    cursor: pointer;
    /* Changes the cursor to a hand icon */

    /* Typography */
    text-decoration: none;
    /* Removes the default underline */
    font-size: 1.1rem;
    /* Sets the font size */
    margin-left: 2rem;
}