body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #6e7981;
  margin: 0;
  align-items: center;
  justify-content: center;
  display: flex;
}

h1 {
  color: black;
  margin: 0;
  font-size: 25px;
  line-height: 19px;
}
h2 {
  font-size: 20px;
  line-height: 17px;
}
header {
  border-bottom: 1px solid #792778;
  padding: 0 0 30px 0;
}
main {
  padding: 25px 0;
}
.weather {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  padding: 20px;
  text-align: center;
}
.circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(145deg, #4a90e2, #357ab7);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  flex-direction: column;
  margin-top: 20px;
  padding: 10px;
}
.emoji {
  font-size: 50px;
  margin-bottom: 5px;
}
.temp {
  font-size: 22px;
  font-weight: bold;
}
.date {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  display: block;
}
.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(39, 33, 66, 0.7);
}
.detail p {
  margin: 0;
}
.details strong {
  color: #fc709b;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  gap: 1px;
}
.weather-forecast-day {
  flex: 1;
  text-align: center;
  font-size: 14px;
  width: 18%;
}
.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 5px;
  gap: 5px;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 4px;
}
.search-form-input {
  border: none;
  border-radius: 6px;
  width: 75%;
  font-size: 16px;
  padding: 10px;
  background-color: #d8dde0;
}
h1,
p {
  margin: 0;
  padding: 0;
}
.search-form-button {
  background-color: #662eed;
  padding: 10px;
  border: none;
  color: #ffffff;
  border-radius: 6px;
  margin-left: 5px;
}
footer {
  border-top: 1px solid #792778;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
