body {
  margin: 0px;
  padding: 0px;
  background: linear-gradient(to left, #ff99ff 0%, #ff6699 100%);
}
#weeklyForcast {
  display: flex;
  justify-content: center;
}
#weeklyForcast > div {
  border-radius: 8px;
  width: 9%;
  padding: 1%;
  margin: 0px 4px;
  background: linear-gradient(to top, #ff99ff 0%, #000099 100%);
}
#weeklyForcast > div:hover {
  background: linear-gradient(to bottom, #003366 0%, #ff33cc 100%);
}
#weeklyForcast p {
  color: white;
  font-size: 20px;
  margin: 3px 0px;
  text-align: center;
}
#weeklyForcast > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
#weatherDetails {
  width: 95%;
  display: grid;
  grid-template-columns: 54% auto;
  grid-template-rows: auto;
  grid-gap: 2%;
  margin: auto;
  margin-top: 50px;
}
iframe {
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#heading > h1 {
  width: fit-content;
  padding: 10px 100px;
  text-align: center;
  border-radius: 10px;
  color: rgb(0, 255, 76);
  background: linear-gradient(to bottom, #cc99ff 0%, #0099ff 100%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#inputBox {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: fit-content;
  padding: 20px 40px;
  border-radius: 10px;
  margin: auto;
}
#inputBox > button {
  margin-left: 10px;
}
#heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
#details {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(2, auto);
  background: linear-gradient(to top, #6666ff 0%, #ff66ff 100%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 380px;
  width: 94%;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 50px;
  border-radius: 8px;
}
#currentForcast {
  display: flex;
  justify-content: space-between;
  margin: 0px 10px;
  color: white;
}
#currentForcast > div {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 1px 20px;
  height: 170px;
  border-radius: 10px;
  background: linear-gradient(to top, #ff99ff 0%, #000099 100%);
}
#currentForcast > div:hover {
  background: linear-gradient(to bottom, #003366 0%, #ff33cc 100%);
}
#currentForcast img {
  width: 70px;
  margin: 0px;
}
#currentForcast p {
  font-size: 18px;
}
#currentForcast > div + div {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: 70px auto;
  justify-content: center;
  margin: 0px;
  width: 200px;
  text-align: center;
  line-height: 25px;
}
input {
  height: 20px;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid white;
  outline: none;
}
button {
  height: 35px;
  width: 130px;
  border-radius: 10px;
  border: 1px solid white;
  color: white;
  background-color: blue;
  cursor: pointer;
}
#inputBox > div {
  background-color: white;
  border-radius: 10px;
}
