@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
:root {
    --box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    --header-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
    --blue-color: #32a0db;
    --blue-shadow: 0 0 0.25rem rgba(50, 160, 219, 0.4);
    --jungle-color: #009039;
    --jungle-shadow: 0 0 0.25rem rgba(0, 144, 57, 0.4);
    --orange-color: #fd6a00;
    --orange-shadow: 0 0 0.25rem rgba(253, 106, 0, 0.4);
    --red-color: #ff3737;
    --red-shadow: 0 0 0.25rem rgba(255, 55, 55, 0.4);
    --green-color: #b3ea00;
    --green-shadow: 0 0 0.25rem rgba(179, 234, 0, 0.4);
    --yellow-color: #fc3;
    --yellow-shadow: 0 0 0.25rem rgba(255, 204, 51, 0.4);
    --dark-color: #212630;
    --dark-shadow: 0 0 0.25rem rgba(33, 38, 48, 0.4);
    --darker-color: #171a21;
    --darker-shadow: 0 0 0.25rem rgba(23, 26, 33, 0.4);
    --darkest-color: #111318;
    --darkest-shadow: 0 0 0.25rem rgba(17, 19, 24, 0.4);
    --text-color: #fff;
    --text-secondary-color: hsla(0, 0%, 100%, 0.6);
    --text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
    --link-color: #fff;
    --spacer-1: 2px;
    --spacer-2: 1.25rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.5rem;
    --font-size-sm: 0.75rem;
    --border-radius-sm: 0.3125rem;
    --border-radius: 0.625rem;
    --border-radius-lg: 1.125rem;
    --transition-time: 0.3s
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(23, 26, 33, .2);
    border-radius: 10px;
    background-color: #212630
}

::-webkit-scrollbar-thumb {
    border: 10px solid transparent;
    border-radius: 9999px;
    background-color: #fff;
    min-height: 30px
}

::-webkit-calendar-picker-indicator {
    filter: invert(1)
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacer-2);
    width: 1230px
}

@media(min-width:1270px) {
    .container {
        width: calc(100vw - 40px)
    }
}

@media(min-width:1680px) {
    .container {
        width: 1640px
    }
}

body,
html {
    display: block;
    min-height: 100%;
    padding: 0;
    margin: 0
}

html {
    font-family: Roboto, sans-serif;
    height: 100%;
    font-size: 12px;
    scroll-behavior: smooth
}

@media(min-width:1270px) {
    html {
        font-size: calc(.97561vw - .39024px)
    }
}

@media(min-width:1680px) {
    html {
        font-size: 16px
    }
}

* {
    font-family: inherit;
    box-sizing: border-box
}

a {
    color: var(--link-color);
    text-decoration: none
}

section {
    margin-bottom: var(--spacer-2)
}

.category-buttons {
    display: grid;
    grid-column-gap: var(--spacer-2);
    align-items: center;
    grid-template-columns: unset
}

.category-buttons nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(4.75rem, 1fr));
    grid-auto-flow: column;
    grid-column-gap: var(--spacer-1);
    padding-top: var(--spacer-2);
    padding-bottom: var(--spacer-2);
    margin-top: calc(var(--spacer-2)*-1);
    margin-bottom: calc(var(--spacer-2)*-1);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    flex: 1 1;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth
}

.category-buttons nav::-webkit-scrollbar {
    display: none
}

.category-buttons nav a {
    box-shadow: var(--box-shadow);
    background-color: var(--dark-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 4.75rem;
    height: 3.75rem;
    scroll-snap-align: start
}

.category-buttons nav a:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius)
}

.category-buttons nav a:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0
}

.category-buttons nav a img {
    display: block;
    width: auto;
    height: auto
}

.category-buttons nav a:hover {
    transform: scale(1.01);
    border-radius: var(--border-radius);
    background-color: var(--text-color);
    color: var(--dark-color);
    position: relative;
    z-index: 1
}

.category-buttons nav a:hover:first-child {
    transform: scale(1.01) translateX(.45%)
}

.category-buttons nav a:hover:last-child {
    transform: scale(1.01) translateX(-.45%)
}

.category-buttons nav a:hover img {
    filter: invert(100%)
}

.category-buttons nav a img {
    max-height: 67.5%;
    max-width: 80%
}