@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: bold;
    src: url("/static/font/static/Montserrat-Bold.ttf");
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-normal';
    font-style: normal;
    font-weight: normal;
    src: url("/static/font/static/Montserrat-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-semibold';
    font-style: normal;
    font-weight: 600;
    src: url("/static/font/static/Montserrat-SemiBold.ttf");
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    font-family: 'Montserrat-bold', Arial, sans-serif;
    font-weight: bold;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}
.font-montserrat-normal {
    font-family: 'Montserrat-normal', Arial, sans-serif;
    font-weight: normal;
    line-height: 1.2;
}

.font-montserrat-semibold {
    font-family: 'Montserrat-semibold', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.font-montserrat-bold {
    font-family: 'Montserrat-bold', Arial, sans-serif;
    font-weight: bold;
    line-height: 1.6;
}


h1 {
    margin: 0 0 30px;
    padding: 0;
    font-size: 2em;
    font-weight: 400;
}

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

li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #43a047;
}

input[type=range].noValueSlider::-webkit-slider-thumb {
    background: grey;
}
input[type=range].noValueSlider::-moz-range-thumb {
    background: grey;
}
