body {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/166/533/original/pexels-enrique72-14688103.jpg?1748094004");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100%;
  background-position: center center;
  font-family: "Roboto", sans-serif;
  position: static;
  overscroll-behavior: none;
  touch-action: manipulation;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

a {
  color: #885df1;
}

html {
  overscroll-behavior: none;
  touch-action: manipulation;
}

video {
  height: calc(var(--vh, 1vh) * 100);
  overscroll-behavior: none;
  touch-action: manipulation;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -100;
  pointer-events: none;
  opacity: 0.7;
}

.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);
  position: relative;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.75;
  overflow-y: auto;
}

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: #885df1;
  color: white;
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 5px;
}

main {
  padding: 30px 0;
}

.current-temperature {
  font-size: 48px;
}

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

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

.current-details strong {
  color: #f65282;
}

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

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

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

.current-weather-forecast {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.current-forecast-date {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  color: rgba(39, 33, 66, 0.4);
}
.weather-forecast-day {
  text-align: center;
  margin: 10px;
}

.current-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.current-forecast-temperatures {
  text-align: center;
  display: flex;
  margin-top: 10px;
  justify-content: center;
}
.current-forecast-temperature {
  padding: 0 10px;
}

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