
html, body {
    background-color: #111;
    margin: 0;
    height: 100%;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#c {
    border: 1px solid white;
    box-shadow: -5px 5px 0px #54ff8d;
    border-radius: 5px;
    animation: popin 0.5s;
    cursor: crosshair;
}

@keyframes popin {
    0% {transform: scale(0) rotate(-90deg); opacity: 0; border-radius: 320px;}
    50% {transform: scale(1.05); opacity: 0.4;}
    75% {transform: scale(0.98); opacity: 0.4;}
}

input[type="color"] {
    position: absolute;
    -webkit-appearance: none;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 9px;
    cursor: pointer;
    opacity: 1;
    margin-top: -704px;
    border-radius: 100px;
    animation: float 2s infinite linear;
}

@keyframes float {
    25% {transform: translate(0,2.5px) rotate(1deg);}
    75% {transform: translate(0,-2.5px) rotate(-1deg);}
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}
input[type="color"]::-webkit-color-swatch {
    border: 1px solid white;
    box-shadow: -3px 3px 0px #54ff8d;
    border-radius: 100px;
}
input[type="color"]:hover {
    width: 43px;
    height: 43px;
}

input[type="range"] {
    position: absolute;
    margin-top: 704px;
    -webkit-appearance: none;
    border: 1px solid white;
    box-shadow: -3px 3px 0px #54ff8d;
    background-color: #111111;
    animation: float 4s infinite linear;
    width: 320px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    height: 20px;
    background: white;
    cursor: pointer;
    border: 1px solid white;
    box-shadow: -2px 2px 0px #111111;
}

input[type="range"]::-moz-range-thumb {
  width: 40px;
  height: 40px;
  background: #54ff8d;
  cursor: pointer;
}
