body * {
    font-family: "Space Mono", monospace;
    color: #cfd8e4;
}

body {
    background: rgb(25, 30, 30);
    margin: 0;
    display:flex;
    flex-direction:column; 
    min-height: 100vh;
}

.page {
    flex: 1;
}

input[type="color"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    position: relative;
    bottom: -5px;
    background-color: transparent;
    border: 2px solid #cfd8e4;
    border-radius: 10px;
    cursor: pointer;
}

input[type="color"]::-webkit-color-swatch {
    border-radius: 5px;
    border: none;
}
input[type="color"]::-moz-color-swatch {
    border-radius: 5px;
    border: none;
}

.options {
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
}

.option-container input[type="range"] {
    width: calc(100vw - 320px);
    position: absolute;
    left: 270px;
}

.preview {
    position: absolute;
    left: 200px;
}

.option-container {
    margin-top: 10px;
}

#checkerboard-preview {
    margin: 50px auto;
    display: block;
}

#download-button {
    margin-top: 20px;
    padding: 10px;
    border: none;
    background: #0a5dda;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    box-shadow: 0 2px 10px black;
    transition: 100ms;
}

#download-button:hover {
    transform: translateY(-2px);
}
#download-button:active {
    transform: translateY(2px);
}


#footer {
    background: rgb(49, 49, 58);
    margin: 0;
    bottom: 0;
    padding: 30px;
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
}