@import url(./reset.css);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);

/* * {
  border: 1px solid red;
} */

.none {
  display: none !important;
}

body {
  background-color: #282828;
  height: 100vh;
  font-family: "Inter", system-ui;
  color: #fff;
}
.app-weather {
  max-width: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 20px;
  border-radius: 16px;
  background: linear-gradient(167deg, #42d2a6 4.7%, #007991 95.98%), #389196;
  transition: all 0.6s ease;
}

.form {
  display: flex;

  border-radius: 60px;
  padding: 0 20px 0 30px;
  margin-bottom: 20px;

  color: #282828;
  background: #fff;

  min-width: 280px;
  min-height: 40px;
}

.form__input {
  flex-grow: 2;
  letter-spacing: 0.03em;
}
.form__button {
  flex-shrink: 0;
}

.image-container {
  width: 128px;
  margin: auto;
}

.temperature {
  margin-top: 17px;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
}

.city {
  text-align: center;
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 50px;
}

.footer {
  display: flex;
  gap: 50px;
}

.humidity {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.text-humidity {
  text-align: left;
}

.text-humidity p:first-child {
  font-size: 20px;
  font-weight: 300;
}

.text-humidity p:last-child {
  font-size: 14px;
  font-weight: 300;
}

.wind {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.text-wind {
  text-align: left;
}

.text-wind p:first-child {
  font-size: 20px;
  font-weight: 300;
}

.text-wind p:last-child {
  font-size: 14px;
  font-weight: 300;
}
