/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=VT323&display=swap');

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 100vh;
  background: #85cac1;
}

.container {
  width: 100%;
  max-width: 450px;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0px 10px 15px rgb(0, 0, 0, 0.15);
}

.title {
  text-align: center;
  font-family: "Changa One", sans-serif;
  font-weight: 200;
  margin-bottom: 1.5rem;
  color: #111;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.tempInputs {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ipt {
  font-family: "Changa One", sans-serif;
  outline: none;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 12px;
  border: 3px dashed #4f7973;
}

#tempToConvert,
#tempNow {
  outline: none;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
  border: none;
  border-radius: 12px;
  background: #a9cac6;
  font-family: "Changa One", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  border: 1px #a9cac6 solid;
}

#tempToConvert:focus,
#tempNow:focus {
  border: 1px solid #4f7973;
}

.to {
  font-family: "Changa One", sans-serif;
}

#result {
  font-family: monospace, sans-serif;
  font-size: 1.35rem;
  margin-top: 2rem;
  background: #4f7973;
  padding: 1.15rem;
  border-radius: 8px;
  color: #fff;
  box-shadow: 5px 5px 0 #4f797357;
}

.ball {
  width: 300px;
  height: 300px;
  background: rgb(255, 209, 56);
  position: absolute;
  left: 55%;
  bottom: 65%;
  z-index: -1;
  filter: blur(100px);
  border-radius: 50%;
}

.ball2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #cfcfcf;
  right: 45%;
  bottom: 2%;
  z-index: -1;
  filter: blur(100px);
}

@media (max-width: 550px) {
  .ball {
    width: 250px;
    height: 250px;
    left: 5%;
  }
  .ball2 {
    width: 250px;
    height: 250px;
    left: 15%;
  }
}
