@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

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

#home {
    background-color: #000a;
    border-color: #555;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 5px 5px #000a;
    cursor: pointer;
    fill: #fff;
    height: 30px;
    right: 1rem;
    padding: 5px;
    position: fixed;
    bottom: 1rem;
    width: 30px;
    z-index: 99;
}

body {
    background-color: #222;
    background-image: linear-gradient(135deg,
                                      #000 0%,
                                      #222 50%,
                                      #000 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    overflow: hidden;
    place-content: center;
    place-items: center;
}

h2 {
  position: absolute;
  top: 1rem;
}

.container {
  position: relative;
}

input[type="range"] {
  background-color: transparent;
  border-radius: 4px;
  box-shadow: 0 0 5px #0008;
  margin: 1rem 0;
  width: 300px;

  -webkit-appearance: none;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"] + label {
  background-color: #444;
  border-radius: 4px;
  box-shadow: 0 0 5px #0008;
  left: 110px;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: -25px;
  width: 80px;
}

/*  Chrome and Safari */

input[type="range"]::-webkit-slider-runnable-track {
  background: #555;
  border-radius: 4px;
  cursor: pointer;
  height: 10px;
  width: 100%;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;

  background-color: #555;
  border-color: #666;
  border-style: solid;
  border-radius: 50%;
  border-width: 1px;
  box-shadow: 0 0 5px #0008;
  cursor: pointer;
  height: 1.5rem;
  margin-top: -7px;
  width: 1.5rem;
}

/* Firefox */

input[type="range"]::-moz-range-track {
  background: #555;
  border-radius: 4px;
  cursor: pointer;
  height: 1rem;
  width: 100%;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;

  background-color: #555;
  border-color: #666;
  border-style: solid;
  border-radius: 50%;
  border-width: 1px;
  box-shadow: 0 0 5px #0008;
  cursor: pointer;
  height: 1.5rem;
  margin-top: -7px;
  width: 1.5rem;
}
