* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: aquamarine;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 95%;
    height: 95vh;
}

ol {
    list-style: none;
    height: 60px;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

li {
    padding: 15px;
}

li:nth-child(1) label {
    position: relative;
    top: -5px;
}

input[type=range] {
    position: relative;
    top: 3px;
    width: 100px;
}

button {
    height: 25px;
    width: 45px;
    margin: 5px;
}

input {
    height: 25px;
    width: 45px;
    margin: 5px;
}

canvas {
    width: 90%;
    height: 90%;
    background-color: white;
}

@media (max-width: 480px) {
    ol {
        flex-direction: column;
    }
}