html {
    min-height: 100vh;
    overflow: hidden;
}
:root {
    --ylw: #fed620;
    --d-ylw: #be9d09;
}

body {
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    background-color: #f4f4f4;
    background-image: url(../../background.png);
    color: #000;
}

a {
    transition: 0.2s ease;
    color: #000;
    text-decoration: none;
}

a:focus,
a:hover {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: var(--ylw);
    text-decoration: none;
}

img {
    width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #eee;
    outline: none;
    margin-bottom: 24px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 25px;
    height: 35px;
    background: var(--ylw);
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 35px;
    background: var(--ylw);
    cursor: pointer;
}

input,
select,
textarea {
    border: 2px solid #f4f4f4;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    padding: 8px 0 8px 12px;
    outline: none;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    border: 2px solid var(--ylw);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold !important;
}

section {
    max-width: 100%;
    padding: 50px 0;
}

.page-link {
    color: #000;
    border: 1px solid #000;
}

.page-link:hover {
    color: #000;
    background-color: var(--ylw);
    border-color: #000;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 0;
    border-color: #000;
}

.page-item.active .page-link {
    z-index: 1;
    color: #000;
    background-color: var(--ylw);
    border-color: #000;
}
