@font-face {
  font-family: Panama;
  src: url(fonts/Panama\ Regular.otf);
}

@font-face {
  font-family: IBM;
  src: url(fonts/IBMPlexSans-Regular.ttf);
}

body {
  background: linear-gradient(-45deg, #ff0000, #ff003d, #ff00a2, #ff003d);
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  font-family: IBM, sans-serif;

  padding-top: 120px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

input {
  display: block;
}

.margin-bottom-small {
  margin-bottom: 16px;
}

.paramaters-container {
  padding: 50px;
  border-radius: 23px;
  margin: 8px;
  width: 27%;
  background: rgba(255, 255, 255, 0.17);
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(10.4px);
  -webkit-backdrop-filter: blur(7px);
}

h2 {
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: -13px;
  line-height: 2.3rem;
  font-family: Panama, serif;
  color: white;
}

p {
  color: white;
  margin-top: 50px;
  font-size: 15px;
  width: 80%;
  margin-bottom: 50px;
  line-height: 1.2;
}

a {
  text-decoration: underline;
  color: rgb(255, 255, 255);
  transition: 0.5s ease;
}

a:hover {
  color: rgb(0, 0, 0);
  text-decoration: underline;
}

img {
  height: 50px;
}

input[type="button"] {
  background-color: black;
  border-radius: 100px;
}

label {
  color: white;
  display: block;
  font-size: 20px;
  text-transform: uppercase;
}

input[type="button"] {
  background-color: #000000;
  border: none;
  font-size: 25px;
  border-radius: 80px;
  color: white;
  text-transform: uppercase;
  padding: 10px 25px;
  text-decoration: none;
  margin-right: 20px;
  cursor: pointer;
  font-family: Panama;
  transition: 0.3s ease;
  margin-bottom: 20px;
}

input[type="button"]:hover {
  background-color: #ffffff;
  color: #000000;
}

.paramaters-container div {
  display: flex;
  margin-top: 80px;
}

input[type="text"] {
  padding: 10px 20px;
  margin: 8px 0;
  display: inline-block;
  border: none;
  font-size: 17px;
  border-radius: 24px;
  font-family: IBM;
}

/*********** Baseline, reset styles ***********/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 13.5rem;
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: #ffffff;
  border-radius: 1rem;
  height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -4px; /* Centers thumb on the track */
  background-color: #000000;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline: 3px solid #000000;
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: #ffffff;
  border-radius: 1rem;
  height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: #000000;
  border: none; /*Removes extra border that FF applies*/
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type="range"]:focus::-moz-range-thumb {
  outline: 3px solid #000000;
  outline-offset: 0.125rem;
}
