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

/* a {
  color: ;
} */

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

.current-temp-unit {
  font-size: 28px;
  position: relative;
  top: -38px;
}

.current-temp-icon {
  position: relative;
  top: -8px;
  font-size: 40px;
  margin-right: 10px;
}

.current-temp {
  color: #3d3d4e;
  font-size: 48px;
}

.current-weather {
  display: flex;
  justify-content: space-between;
}

.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: #4a4a6a;
  /* background-color: #885df1; */
  color: #e8e4f8;
  /* color: white; */
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 5px;
}

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

.current-city {
  color: #3d3d4e;
  font-size: 38px;
  font-weight: 900;
  margin: 0;
}

.current-details {
  /* color: rgba(39, 33, 66, 0.4); */
  color: #6b6b80;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.current-details strong {
  color: #4a4a6a;
}

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

footer {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  border-top: 1px solid #f9f7fe;
  padding-top: 15px;
}

main {
  padding: 30px 0;
}
