body {
  padding-top: 30px;
  background-color: rgb(2, 2, 22);
  font-family: Roboto, helvetica neue, helvetica, arial, sans-serif;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 80%;
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opactiy: 0.3;
  }
}

.weather-app {
  background: rgb(233, 233, 238);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 30px 50px rbga(65, 50, 100, 0.8);
  border-radius: 15px;
  padding: 10px 30px 30px 30px;
}

header {
  border-bottom: 1px solid rgb(2, 2, 22);
  padding: 0 0 30px 0;
  text-align: center;
  text-color: rgb(2, 2, 22);
}
h1 {
  font-size: 42px;
}
.search-form-input {
  background-color: rgb(2, 2, 22);
  //rgb(208, 208, 218);
  border: none;
  border-radius: 6px;
  width: 70%;
  height: 30px;
  padding: 15px 20px;
  font-size: 16px;
}

.search-form-button {
  background-color: blueviolet;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  color: aliceblue;
  font-size: 16px;
}

main {
  padding: 30px 0;
}

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

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

.weather-app-details {
  font-size: 18px;
  color: rgb(39, 33, 66, 0.4);
  line-height: 20px;
}
.weather-app-unit {
  font-size: 36px;
}
.weather-app-temp {
  font-size: 68px;
  margin-left: -5px;
  font-weight: 400px;
  margin-top: -10px;
}

.weather-app-icon {
  font-size: 48px;
  margin-top: -20px;
}
.weather-app-details strong {
  color: rgb(61, 12, 236);
}

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

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.weather-forecast-date {
  text-align: center;
  color: rgb(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  width: 88px;
  height: 88 px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: rgb(61, 12, 236);
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.weather-forecast-temp {
  padding: 0 10px;
}
footer {
  border-top: 1px solid rgb(31, 31, 34);
  padding: 30px 0 0 0;
  text-align: center;
  font-size: x-small;
  color: rgba (0 0 0 0.6);
}

a {
  color: blueviolet;
}
