*, html {
    padding: 0;
    margin: 0;
}


::-webkit-scrollbar
{
	width: 6px;
	background-color: #f5f5f500;
}

::-webkit-scrollbar-thumb
{
	background-color: #000000;
}



body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100svh;
    overflow-x: hidden;
    font-size: large;
    background-color: whitesmoke;
    color: #272727;
}

main, header {
    width: 100%;
    max-width: 800px;
}

footer {
    width: 100%;
}

h2 {
    padding-top: 1rem 0;
}

p, ul {
    padding: 0.5rem 0;
}

ul {
    list-style: none;
}


video {
    height: 300px;
    width: 100%;
    max-width: 400px;
}

audio {
    width: 100%;
}

canvas {
    width: 100%;
}

#sketch-holder {
    font-size: 0;
    line-height: 0;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #000000;
    outline: none;
}
  
  
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: #ffffff;
    cursor: ew-resize	;
}

input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #ffffff;
    cursor:ew-resize	;
}
