@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro&display=swap');

* {
    margin: 0;
    padding: 0;
}

body{
    background-color: #e6fdfe;
    font-family: 'Anonymous Pro', monospace;
}

.slider{
    display: flex;
    width: 240px;
    justify-content: space-between;
}

.slider:first-child{
    width: 220px;
}

.slider * {
    display: inline;
}

.slider-container{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 10px;
}

canvas{
    position: relative;
    left: 50%;
    transform: translate(-340px);
    margin: 20px;
    border-radius: 5%;
    box-shadow: 0px 0px 10px 0px gray;
}
