:root {
    --borderColor: #eaeaea;
    --borderHoverolor: #82a8c7;
    --textColor: #5d5d5d;
    --bgCellColor: #f5f5f5;
    --bgCellHoverColor: #d3d3d3;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    color: var(--textColor);
}

h1 {
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 20px;
}

.icon-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--borderColor);
    background-color: var(--bgCellColor);
    text-align: center;
    width: 180px;
    min-height: 80px;
    padding: 20px;
    border-radius: 4px;
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.icon-card:hover {
    border-color: var(--borderHoverolor);
    background-color: var(--bgCellHoverColor);
}

.icon-card img {
    width: 36px;
    height: 36px;
}

.icon-card div {
    font-size: 12px;
    cursor: copy;
}

#filters {
    padding: 20px;
    position: sticky;
    top: 0;
    background-color: white;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#searchInput {
    padding: 12px 20px;
    margin-right: 10px;
    box-sizing: border-box;
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    width: 300px;
}

#colorFilter {
    padding: 10px;
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    width: 300px;
}