body {
  background-color: #e6d3a7;
  font-family: Arial, Helvetica, sans-serif;
  color: #f0f0f0;
}

.content {
  background-color: #392f2f;
  background-size: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  width: 600px;
  margin: 0 auto;
}

form {
  display: block;
  width: 300px;
  margin: 0 auto;
}

form input[type="text"] {
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

form input[type="submit"] {
  padding: 10px 20px;
  background-color: #59a985;
  color: white;
  border: none;
  border-radius: 5px;
}

form input[type="submit"]:hover {
  background-color: #427c62;
  cursor: pointer;
  transition: background-color 200ms ease;
}

h1 {
  color: #f0f0f0;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  margin: 20px;
}

.container {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  padding: 0 0 20px 0;
  justify-content: space-around;
}

.weather-today {
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-today p {
  font-size: 50px;
  font-weight: 700;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

ul {
  display: flex;
  justify-content: space-evenly;
  list-style-type: none;
  padding: 0;
  text-align: center;
}

#icon {
  width: 90px;
  vertical-align: middle;
}

.weather-forecast {
  display: flex;
  justify-content: space-evenly;
}

.weather-forecast-date {
  text-align: center;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
}

.weather-forecast-icon img {
  width: 70px;
  display: block;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  text-align: center;
  color: rgba(240, 240, 240, 0.8);
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.weather-forecast-temperature {
  padding: 0 10px;
}

footer {
  text-align: center;
  padding: 40px 40px 20px 40px;
}

strong {
  color: #59a985;
}

a {
  color: #f0f0f0;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
}

a:hover {
  color: #59a985;
  text-decoration: underline;
  transition: ease-in-out 150ms;
}
