* {
  margin: 0;
  padding: 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.container {
  height: 100vh;
  width: 100vw;
  background-image: url("images/bckgrd.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mini-container {
  height: 70%;
  width: 25%;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid white;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.header {
  margin: 20px 0 20px 0;
  display: flex;
  justify-content: center;
}
.inputbox {
  width: 75%;
  padding: 10px;
  border-radius: 15px 0 0px 15px;
  border-width: 2px 0 2px 2px;
  border-style: solid;
  border-color: white;
  background-color: transparent;
  cursor: pointer;
  color: white;
}
.inputbox::placeholder {
  color: white;
}
.search {
  padding: 10px;
  border: none;
  border-radius: 0px 10px 10px 0px;
  background-color: transparent;
  border-width: 2px 2px 2px 0px;
  border-style: solid;
  border-color: white;
  cursor: pointer;
}
.search i {
  color: white;
}
.body {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 15px 0 15px;
  margin: 70px 0 20px 0;
}
.body img {
  height: 110px;
  width: 145px;
  /* margin-right: 30px; */
}
.info {
  /* display: flex;
  flex-direction: column; */
  /* align-items: self-start; */
  padding-right: 20px;
  /* justify-content: center; */
}
.info h1 {
  font-size: 3rem;
  color: white;
}
.info p {
  color: white;
  font-size: 0.9rem;
  word-break: break-all;
}
.info h3 {
  color: white;
}
.footer {
  margin-top: 60px;
  height: 41%;
  width: 100%;
  /* border-width: 1px 0px 0px 0px;
  border-style: solid;
  border-color: white; */
  /* border: 1px solid white; */
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
}
.condition {
  height: 50%;
  width: 50%;
  /* border-right: 1px solid white;
  border-bottom: 1px solid white; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.condition i {
  color: white;
  border: none;
  font-size: 2rem;
  margin-right: 10px;
}
.condition p {
  color: white;
  font-size: 1rem;
}

.feelslike {
  height: 50%;
  width: 49%;
  /* border-bottom: 1px solid white; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.feelslike p {
  color: white;
  font-size: 1rem;
}
.windspeed {
  height: 50%;
  width: 50%;
  /* border-right: 1px solid white; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.windspeed i {
  color: white;
  border: none;
  font-size: 2rem;
  margin-right: 10px;
}
.windspeed p {
  color: white;
  font-size: 1rem;
}
.humidity {
  height: 50%;
  width: 49%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.humidity i {
  color: white;
  border: none;
  font-size: 2rem;
}
.humidity p {
  color: white;
  font-size: 1rem;
}

.hidden {
  display: none;
}
.hidden i {
  color: black;
}
