body {
  background-color: white;
}

a {
  color: #885df1;
}

.weather-app-city {
  font-family: "Times New Roman", Times, serif;
  size: 38px;
  line-height: 48px;
  color: rgb(68, 64, 64);
  margin: 0;
  text-decoration: bold;
}

.weather-app {
  background: rgb(152, 218, 242);
  max-width: 600px;
  margin: 45px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
}

header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}
.search-form-input {
  background-color: rgb(201, 243, 228);
  border: none;
  border-radius: 6px;
  width: 250px;
  padding: 12px;
  font-size: 15px 20px;
}

.search-form-button {
  background: rgb(68, 68, 244);
  color: white;
  width: 100px;
  padding: 5px;
  border-color: blue;
  border-radius: 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  text-decoration: bold;
}

.search-form-button:hover {
  background-color: rgb(201, 243, 228);
  color: rgb(68, 64, 64);
  cursor: pointer;
  transition: ease-in-out 200ms;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.date-time {
  font-size: 18px;
  text-decoration: bold;
}
.weather-app-details {
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  color: rgb(68, 64, 64);
  line-height: 20px;
}

.weather-app-details strong {
  color: blue;
}

.weather-app-temperature-container {
  display: flex;
}

.weather-app-icon {
  font-size: 60px;
  margin-top: 5px;
}
.weather-app-temperature {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 100px;
  text-decoration: bold;
}
.weather-app-unit {
  margin-top: 15px;
  font-size: 30px;
  text-decoration: bold;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.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: 10px;
  display: flex;
  justify-content: center;
}

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

footer {
  text-align: center;
  font-size: 12px;
  color: (0, 0, 0, 0.6);
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
}
.coder {
  color: rgb(244, 99, 201);
}
