html {
  padding: 0;
  margin: 0;
  box-sizing: 0;
}
body {
  height: 100svh;
  background-color: #212121;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#personal a:any-link {
  text-decoration: none;
  color: aquamarine;
}
.card {
  width: 90%;
  max-width: 470px;
  background: linear-gradient(135deg, #ffffff, #1135d4);
  border-radius: 20px;
}
.search {
  margin: 20px 0;
  display: flex;
}
.error-message {
  display: none;
}
.error-message h2 {
  text-align: center;
  font-size: 1.5rem;
}
.error-message h2 span {
  color: rgb(192, 36, 36);
}
.weather-details {
  display: none;
}
input {
  height: 30px;
  width: 60%;
  border: 0;
  outline: 0;
  border-radius: 20px;
  padding-left: 10px;
  margin-left: 50px;
}
button {
  border-radius: 50%;
  border: 1px solid white;
  height: 30px;
  margin: 0 20px;
  margin-top: 2.5px;
}
button img {
  width: 16px;
  height: auto;
}
.temp-city {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.temp-city img {
  width: 170px;
  margin-top: 10px;
}
.temp-city h1 {
  font-size: 5rem;
  margin-top: -20px;
}
.temp-city h2 {
  margin-top: -50px;
  font-size: 3rem;
}
.sub-card {
  display: flex;
  justify-content: space-around;
}

.humidity-wind {
  margin-top: 1rem;
  display: flex;
  padding-bottom: 3rem;
  /* flex-grow: 0; */
}
.humidity-wind img {
  width: 46px;
  align-self: flex-start;
}
.humidity-wind p {
  margin-top: -3px;
  margin-bottom: 10px;
  margin-left: 10px;
}
