* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background-color: white;
}

body::-webkit-scrollbar-thumb {
    border-radius: 5rem;
    background-color: #00904b;
}

.styled-scroll::-webkit-scrollbar {
    width: 4px;
}

.styled-scroll::-webkit-scrollbar-track {
    background-color: white;
}

.styled-scroll::-webkit-scrollbar-thumb {
    border-radius: 5rem;
    background-color: #2bb9ed;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-box {
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    color: white;
    background-color: #333333;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-btns-box {
    display: flex;
    gap: 16px;
}

.cookie-btns {
    padding: 10px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.cookie-btns.accept {
    color: white;
    background-color: #00904b;
}

.cookie-btns.decline {
    color: white;
    background-color: transparent;
    border: 1px solid #00904b;
}

@media (max-width: 600px) {
    .cookie-box {
        flex-direction: column;
    }
}
