:root {
    --wolfpack-red: #CC0000;
}

* {
    box-sizing: border-box;
    /* roboto-regular */
    font-family: "Roboto", Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

a {
    color: #1f5d81;
    text-decoration: none;
}

.bg-wolfpack-red {
    background-color: var(--wolfpack-red);
}

#logout {
    cursor: pointer;
}

#profile {
    cursor: pointer;
}

.profile {
    cursor: pointer;
}

input {
    border: 1px solid #e3e3e3;
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 4px;
    padding: .25em .5em;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.05);
}

input[type="submit"] {
    border: 2px solid var(--wolfpack-red);
    border-radius: 4px;
    background-color: transparent;
}



/* ====================== Dark Mode ====================== */

body.dark {
    filter: invert(1);
}

body.dark #map,
body.dark #map-container,
body.dark .park img,
body.dark #park-container img {
    filter: invert(1);
}