@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");

* {
  font-family: "Ubuntu", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: #121330;
  display: grid;
  place-items: center;
  /* overflow: hidden; */
  overflow-x: hidden;
  /* overflow-y: hidden; */
}
#home{
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px;
}
form {
  /* background-color: #f4eb3f; */
  background: linear-gradient(279deg, rgba(0, 212, 255, 1) 0%, rgba(5, 5, 100, 1) 152%, rgba(0, 212, 255, 1) 100%);
  padding: 80px;
  width: 50%;
  margin: 60px auto;
  text-align: center;
  place-items: center;
  box-shadow: 0 10px 6px -6px rgb(255, 250, 250);
  border-radius: 5px;
}

label {
  font-size: 26px;
  font-weight: 500;
}

#temp {
  border: none;
  padding: 10px;
  height: 25px;
  width: 150px;
  font-size: 20px;
  border-radius: 3px;
  margin-top: 20px;
  box-shadow: 0 8px 6px -6px rgb(0, 0, 0);
}

#temp_diff {
  height: 25px;
  margin-left: 5px;
  padding: 5px;
  border: none;
  border-radius: 3px;
  margin-top: 20px;
  font-size: 15px;
  /* box-shadow: 0 10px 6px -6px rgb(0, 0, 0); */
}

[type="button"] {
  height: 35px;
  margin: 20px;
  margin-bottom: -10px;
  width: 100px;
  font-size: 15px;
  border: none;
  border-radius: 3px;
  background-color: black;
  color: white;
  cursor: pointer;
}
#convert:hover{

  color: #e57a15;
  /* color: rgb(255, 242, 3); */
}

#resultContainer {
  font-size: 30px;
}

.calculator-name-header {
  margin-top: 50px;
  padding: 10px;
  border-radius: 0px 15px 0px 15px;
  box-shadow: 0px 0px 16px 1px;
  font-size: 25px;
  /* background-color: #f4eb3f; */
  background: linear-gradient(279deg, rgba(0, 212, 255, 1) 0%, rgba(5, 5, 100, 1) 152%, rgba(0, 212, 255, 1) 100%);
}
