body {
  background-color: #000000;
  font-family: "Raleway", serif;
}
a {
  color: #ee0979;
}
.weather-app {
  background: radial-gradient(
    circle at 24.1% 68.8%,
    rgb(50, 50, 50) 0%,
    rgb(0, 0, 0) 99.4%
  );
  max-width: 660px;
  margin: 50px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}

header {
  border-bottom: 1px solid #e5e4e2;
  padding: 0 0 30px 0;
}

.search-form-input {
  background-color: #5f6368;
  border: none;
  border-radius: 30px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}
.search-form-button {
  background: linear-gradient(
    109.8deg,
    rgb(238, 9, 121) 42.8%,
    rgb(255, 106, 0) 83.3%
  );
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
  border-radius: 40px;
  color: #ffffff;
}
main {
  padding: 30px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
  color: #ffffff;
}
.weather-app-details {
  font-size: 16px;
  line-height: 25px;
  color: #ffffff;
}
.weather-app-details strong {
  color: #ff6a00;
}
.weather-app-temperature-container {
  display: flex;
}
.weather-app-icon {
  width: 100px;
  height: 100px;
  margin-top: 15px;
}
.weather-app-temperature-value {
  font-size: 88px;
  font-weight: bold;
  margin-left: 5px;
  color: #ffffff;
}
.weather-app-unit {
  margin-top: 20px;
  font-size: 28px;
  color: #ffffff;
}

footer {
  border-top: 1px solid #e5e4e2;
  padding: 15px 0 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
}
