body {
  background: #f9f7fe;
  font-family: "Roboto", sans-serif;
}

a {
  color: rgb(63, 2, 204);
}

.weather-app {
  position: relative;
  overflow: hidden;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s ease-in-out;

  max-width: 600px;
  height: 100%;
  margin: 60px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 60px rgba(65, 50, 100, 0.08);
  z-index: 1;
}

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

.search-input {
  background-color: #f9f7fe;
  border: none;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  padding: 20px;
  width: 75%;
  border-radius: 6px;
}

.search-button {
  margin-left: 5px;
  font-size: 16px;
  background-color: rgb(63, 2, 204);
  color: white;
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 5px;
}

main {
  padding: 30px 0;
}

.current-temperature {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 40px;
  font-weight: bold;
  color: rgb(63, 2, 204);
}

.current-temperature-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: auto;
  margin-top: 10px;
  width: 100px;
  height: 100px;
}
.current-weather {
  display: flex;
  justify-content: space-between;
}

.current-city {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  color: rgb(63, 2, 204);
}
.current-details {
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.current-details strong {
  color: rgb(63, 2, 204);
}

.current-temperature-value {
  font-size: 80px;
  font-weight: bold;
}

.current-temperature-unit {
  font-size: 28px;
  position: relative;
  top: -38px;
  color: rgb(63, 2, 204);
}

.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 {
  font-size: 38px;
  text-align: center;
}
.weather-forecast-temperatures {
  text-align: center;
  color: rgb(63, 2, 204);
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

footer {
  border-top: 1px solid #f9f7fe;
  text-align: center;
  padding-top: 15px;

  color: rgb(63, 2, 204);
}
