body {
    font-family: Arial, sans-serif;
    color: #191919;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px;
    background-color: #CED0CE;
}

.container {
    display: grid;
    grid-template-columns: 400px min-content;
}

h1 {
    margin: 10px;
}

p {
    margin: 10px;
}

hr {
    border: 0;
    clear: both;
    display: block;
    margin: 10px;
    width: 65vw;
    background-color: #191919;
    height: 1px;
}

.options {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin: 10px;
}

.input-field {
    display: flex;
    flex-direction: column;
}

label, input {
    margin: 5px 20px 5px 0;
}

input {
    background-color: #E6E8E6;
}

input[type="number"], input[type="color"] {
    width: 100px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #F15025;
}

button {
    padding: 10px 20px;
    background-color: #F15025;
    color: #E6E8E6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

button:hover {
    background-color: #E6E8E6;
    color: #191919;
}

#pixel-circle {
    image-rendering: pixelated;
}

.circle-image {
    background-color: #E6E8E6;
    position: relative;
    width: 60vh;
    height: 60vh;
    margin: 10px;
}

.circle-image canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 700px) {
    .container {
        display: grid;
        grid-template-columns: 1fr;
    }
}