.body {
  background: rgb(187, 83, 89);
  background: radial-gradient(
    circle,
    rgba(187, 83, 89, 1) 0%,
    rgba(149, 65, 70, 1) 14%,
    rgba(77, 7, 57, 1) 30%,
    rgba(64, 6, 46, 1) 62%,
    rgba(47, 5, 34, 1) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  height: 100vh;
}

.bg-color {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

input {
  border: none;
  border-bottom: 2px solid white;
  background-color: transparent;
  color: white;
  outline: none;
}

input:focus {
  border-bottom: 2px solid white;
}

.tempSize {
  font-size: 5rem;
}

@media (max-width: 600px) {
  .tempSize {
    font-size: 4rem;
  }
}
