/* Center the image and add margin below */
.logo {
    display: block;
    margin: 0 auto 40px;
}
.hidden {
    display: none;
}
canvas {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.text-input {
    height: 170px; /* or the value you need */
    width: 100%;  /* to take full width of its parent */
    resize: both; /* allows manual resize from all directions */
}


footer {
    padding: 10px;
}

#slider-container {
    display: flex;
    align-items: center;
}

#play {
    flex: 0 0 auto;
}
#doublePlay {
    flex: 0 0 auto;
}


.slider {
    margin: 25px;
    flex: 1 1 auto;
}

#left {
    grid-column: 1;
    grid-row: 1;
}


#right {
    grid-column: 2;
    grid-row: 1;
}

@media only screen and (max-width: 800px) {
    #right {
        padding: 10px;
        grid-column: 1;
        grid-row: 2;
    }

}