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

:root {
    --search-height: 96px;
    --mobile-footer-height: 86px;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f4f8;
    color: #111827;
    line-height: 1.5;
}

button,
input,
select {
    font-family: inherit;
}

.desktop-only {
    display: initial;
}

.mobile-only {
    display: none;
}
