
body {
  background: url(../img/gifbackground.gif);
  background-repeat: no-repeat;
  background-size: cover;

}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

label {
  display: block;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  font-family: cursive;
  font-weight: 400;
  letter-spacing: 5px;
  color: #ffffff;
  
}

#mensagem {
  background: rgba(188, 90, 226, 0.3);
  color:#C8a2c8;
  box-shadow: 0px 4px 13px rgba(177, 36, 182, 0.5);

  border: none;
  border-radius: 4px;
  outline: none;
  margin-bottom: 20px;
}

textarea {
  font-family: cursive;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 10px;
  color: #000000;
}

select {
  width: 100%;
  height: 30px;
  border-radius: 5px;
  background: rgba(188, 90, 226, 0.3);
  box-shadow: 0px 4px 13px rgba(177, 36, 182, 0.5);
  font-family: cursive;
  color: #afafaf;
  margin-bottom: 20px;
  outline: none;
}

select option {
  background: #161616;
  color: #ffffff;
  font-family: cursive;
}

.radio {
  display: flex;
  gap: 5px;
  color: #ffffff;
  place-items: center;
}

.radio-button {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
  padding: 20px;
}

.btn {
  display: flex;
  justify-content: center;
}

button {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  padding: 8px;
  border-radius: 5px;
  color: #48CCF9;
  margin-bottom: 20px;
  font-family: cursive;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 4px 13px rgba(177, 36, 182, 0.5);
}

form {
  display: flex;
  flex-direction: column;
}

.mensagem {
  background: rgba(188, 90, 226, 0.3);
  color: #C8a2c8;
  box-shadow: 0px 4px 13px rgba(177, 36, 182, 0.5);
  border: none;
  border-radius: 4px;
  outline: none;
  margin-bottom: 20px;
}

.slider-range {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

input[type="number"] {
  width: 30px;
  background-color: rgba(138, 138, 138, 0.2);
  text-align: center;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #818181;
  border-radius: 5px;
  color: #ffffff;
  outline: none;
  font-family: cursive;
}

.incremento {
  text-align: center;
  margin-bottom: 10px;
  color: #afafaf;
  font-size: 0.875rem;
}

.range {
  -webkit-appearance: none;
  height: 10px;
  background-color: rgb(29, 29, 29);
  outline: none;
  cursor: ew-resize;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 12px;
  width: 10px;
  background-color: #48CCF9;
  border-radius: 2px;
}