@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #7b68ee;
  font-family: "poppins", sans-serif;
}

.container {
  padding: 20px;
  width: 500px;
  background: white;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 7px;
}

.container .celsius,
.container .fehrenheit {
  height: 80px;
  width: 45%;
  float: left;
}

.container .fehrenheit {
  margin-left: 30px;
  padding-left: 20px;
}

.container .celsius h4,
.container .fehrenheit h4 {
  font-weight: 500;
  color: black;
  font-size: 14px;
  margin-top: 15px;
}

.container .celsius input,
.container .fehrenheit input {
  all: unset;
  height: 45px;
  width: 85%;
  border: 1px solid grey;
  border-radius: 7px;
  padding-left: 20px;
  font-size: 22px;
  margin-top: 5px;
}

.container .fa-right-left {
  position: absolute;
  top: 70px;
  margin-left: 10px;
  cursor: pointer;
}

.container .formula-box {
  height: 40px;
  width: 100%;
  margin-top: 110px;
}

.container .formula-box div {
  height: 30px;
  width: 90px;
  background: #7b68ee;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.container .formula-box p {
  white-space: nowrap;
  margin-left: 100px;
  position: relative;
  top: -25px;
}
