* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 0, 0);
  gap: 20px;
}
.wrapper h1 {
  color: rgb(92, 94, 92);
  width: 300px;
  /* background-color: red; */
}
.weather_container {
  color: rgb(122, 122, 122);

  background-color: rgb(0, 0, 0);
  width: 300px;
  height: 450px;
  display: flex;
  /* gap: 100px; */
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  box-shadow:inset 0px 0px 15px rgb(131, 137, 133);
  border-radius: 20px;
}

.inputContainer {
  width: 100%;
  /* margin-bottom: 120px; */
}
.inputContainer form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 40px;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgb(8, 8, 8);
  padding: 5px;
  box-shadow: 0 0 1px;
}

.inputContainer form input {
  background-color: black;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 5px;
  color: white;
  font-size: 16px;
}
::placeholder {
  color: rgb(83, 82, 82);
}
.inputContainer form button {
  width: 100px;
  height: 100%;
  font-size: 16px;
  /* box-shadow: 0 0 10px rgb(58, 58, 58); */
  border-radius: 50px;
  background-color: #000;
  color: #5b5b5b;
  border: none;
  cursor: pointer;
}

.weather_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.weatherBoxOne{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: baseline;
  gap: 20px;
}

.weatherBoxTwo{
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.weatherBoxTwo .humidity{
  display: flex;
}
.weatherBoxTwo .windSpeed{
  display: flex;
}