* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #222222;
}

.container {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 200px;
}
.box{
  background: linear-gradient(135deg, #00feba, #5b548a);
  padding: 40px;
  border-radius: 50px;
}
.searchBox {
  border: none;
  border-radius: 50px;
  height: 50px;
  width: 100%;
  padding: 0 20px;
  margin: 0 20px;
  font-size: large;
}
.searchButton {
  border: none;
  border-radius: 50%;
  width: 75px;
  height: 50px;
  cursor: pointer;
}
.searchButton img {
  width: 20px;
}

.searchRow {
  display: flex;
}

.details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 50px;
}
.col {
    display: flex;
    align-items: center;
    text-align: left;
    margin: 0 10px;
}

.col img {
    width: 40px;
    margin-right: 10px;
}
.humidityPercent,
.windSpeed {
    font-size: 28px;
    margin-top: -6px;
}


.hidden {
  display: none;
}
