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

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(rgb(47,150,163), rgb(48,62,143));
  font-family: 'Baloo Chettan', cursive;
  color: white;
}
.location,
.temperature {
    height: 30vh;
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.degree-section {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.degree-section span {
    margin: 10px;
    font-size: 30px;
}
.degree-section h2 {
      font-size: 40px;
}
.location-option {
  width: 250px;
  padding: 10px 10px 10px 10px;
  background-color: #325494;
  border-radius: 8px;
  color: white;
  outline: none;
  font-family: 'Baloo Chettan', cursive;
}
