* {
    box-sizing: border-box;
}

html, body {
    scrollbar-gutter: stable;
    margin: 0;
    min-height: 100vh;
    color: var(--textColor);
}

body {
    background: black;
    display: flex;
    flex-direction: column;
    color: var(--textColor);
    font-family: "Asta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
}

.search {
    display: flex;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-top: 10px;
}

.input-search {
    background: #153a02;
    color: white;
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    padding-left: 10px;
    box-sizing: border-box;
}

.input-search:hover,
.input-search:focus {
    outline: none;
}

@media (max-width: 599px) {
    body {
        font-size: 14px;
    }

}