* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url(./src/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    width: 90%;
    max-width: 300px;
    background: rgba(0, 0, 0, 0.357);
    color: #fff;
    text-align: center;
    margin: auto 0;
    padding: 40px 35px;
    border-radius: 20px;
}

.search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search #search-box {
    border: 0;
    outline: 0;
    background: #ebfffc;
    color: #555;
    padding: 10px 25px;
    height: 40px;
    border-radius: 30px;
    flex: 1;
    margin-right: 10px;
    font-size: 18px;
}

.search-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.search-btn img {
  width: 20px;
  height: 20px;
}

.weather h1,h3 {
    margin: 10px;
    font-weight: 500;
}

.weather .weather-icon {
    width: 150px;
    margin-top: 30px;
}

.hum-wind {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}

.humidity .humidity-icon {
    width: 50px;
    margin: 10px;
}

.wind .wind-icon {
    width: 50px;
    margin: 10px;
}

.humidity-level, .wind-speed {
    font-size: 20px;
}

.weather, .humidity, .wind {
    display: none;
}

.error {
    text-align: left;
    font-size: 16px;
    margin: 10px 10px;
    color: rgb(233, 6, 6);
}