@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins";
}

body {
  background: #222;
}

.content {
  margin: 7% auto;
  width: 90%;
  max-width: 470px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #3b4453;
  border-radius: 20px;
  padding: 40px 35px;
  text-align: center;
}

.search-box{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-box input {
  width: 80%;
  height: 60px;
  background: #f5f7fa;
  color: #333;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  flex: 1;
  margin-right: 16px;
  font-size: 18px;
  font-weight: 300;
  outline: none;
}


.search-box button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #f5f7fa;
  color: #333;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s;
  outline: none;
}

.search-box button:hover {
  background: #e1e5ea;
}

.search-box button img {
  margin-top: 9px;
  width: 30px;
  height: auto;
}

.weather-icon {
  width: 170px;
  height: auto;
  margin-top: 30px;
}

.weather-box h1{
  font-size: 80px;
  font-weight: 500;
}

.weather-box h2{
  font-size: 60px;
  font-weight: 300;
}

.weather {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 21px;
  margin-top: 49px;
}

.col {
  display: flex;
  align-items: center;
  text-align: left;
}

.col img {
  width: 45px;
  margin-right: 11px;
}

#humidity, #wind {
  font-size: 28px;
}

.error {
  text-align: center;
  font-size: 15px;
  color: rgb(112, 14, 14);
  display: none;
}