:root {
  --red: #d44040;
  --orange: #e76a37;
  --blue: #8686b5;
  --green: #3f8b3f;
  --pink: #e97bb7;
  --gray: #838383;
  --main-color: var(--green);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.8em;
  background-color: var(--main-color);
  color: white;
}

h1 {
  letter-spacing: 6pt;
  text-transform: uppercase;
  margin: 0 auto 48px auto;
}

h1.short-heading {
  max-width: 60%;
}

.content {
  width: 80vw;
  max-width: 1200px;
  margin: 96px auto 0 auto;
  text-align: center;
}

.message-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.message-container p {
  margin: 0;
}

#hostname {
  font-family: monospace;
  padding: 12px;
  background-color: #222;
  border-radius: 0.2em;
}

.badge {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
  border-radius: 0.3em;
  padding: 16px;
  margin: 30px auto;
  gap: 10px;
  width: fit-content;
  font-size: 0.75em;
}

.icon-button img{
  margin: 30px;
  height: 36px;
}

.button {
  position: relative;
  background-color: none;
  border-radius: 4em;
  font-size: 16px;
  color: white;
  border: 2px solid white;
  padding: 0.8em 1.8em;
  cursor: pointer;
  user-select: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s; /* Safari */
}

.button:hover {
  transition-duration: 0.1s;
  background-color: rgba(255, 255, 255, 0.25);
}

.button:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s;
  box-shadow: 0 0 20px 10px white;
}

.button:active:after {
  box-shadow: 0 0 0 0 white;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top: 0;
  opacity: 1;
  transition: 0s;
}

.button:active {
  top: 1px;
}

.badge img {
  height: 1.2em;
}

.badge p {
  padding: 0;
  margin: 0;
}

.slidecontainer {
  margin: 30px;
}

/* Slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  height: 6px;
  background: white;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  height: 15px;
  width: 15px;
  background-color: #222;
  border-radius: 50%;
  border: none;

  transition: 0.2s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: #222;
  border-radius: 50%;
  border: none;

  transition: 0.2s ease-in-out;
}

/* Hover, active & focus Thumb: Webkit */

input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 10px rgba(34, 34, 34, 0.1);
}
input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(34, 34, 34, 0.2);
}
input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(34, 34, 34, 0.2);
}

/* Hover, active & focus Thumb: Firfox */

input[type="range"]::-moz-range-thumb:hover {
  box-shadow: 0 0 0 10px rgba(34, 34, 34, 0.1);
}
input[type="range"]:active::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(34, 34, 34, 0.2);
}
input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(34, 34, 34, 0.2);
}

@media only screen and (max-width: 700px) {
  body {
    font-size: 1.2em;
  }

  h1 {
    max-width: unset;
  }
}
