@font-face {
    font-family: 'ArchitectsDaughterRegular';
    src: url('/ArchitectsDaughter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    --font-body: sans-serif;
    --button-color: #727CE5;
    --button-color-hover: #7e81ff;
    text-align: center;
    background-color: #101340;
    color: #B89FD1;
    font-family: var(--font-body);
    font-size: 18px;
}

h1 {
    font-family: 'ArchitectsDaughterRegular';
    font-weight: normal;
    font-style: normal;
}

h2 {
    font-weight: normal;
}

div {
    margin: 2em;
}

button {
    color: white;
    background-color: var(--button-color);
    font-family: var(--font-body);
    padding: 0.5em 2em;
    font-size: 18px;
    border: none;
    border-radius: 2em;
    margin: 0.2em 0.5em;
    cursor: pointer;
}

button:hover {
    background-color: var(--button-color-hover);
}

input[type=range] {
    width: 400px;
    max-width: 80%;
    margin: 1em;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    background: #463761;
    outline: none;
    border-radius: 5px;
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--button-color);
    border-radius: 50%;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    border: none;
    width: 25px;
    height: 25px;
    background: var(--button-color);
    border-radius: 50%;
    cursor: pointer;
}

input[type=range]:hover::-moz-range-thumb,
input[type=range]:hover::-webkit-slider-thumb {
    background: var(--button-color-hover);
}