body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #01BEFE 0%, rgba(1, 190, 254, 0) 19.27%, #01BEFE 100%);
  text-align: center;
}

div.col {
  margin: 0;
  text-align: right;
}

h1 {
  color: rgb(30, 29, 29);
  font-size: 30px;
  font-weight: 100;
  line-height: 28px;
  margin-bottom: 0;
}

h5 {
  color: rgb(30, 29, 29);
  font-size: 8px;
  font-weight: 100;
  line-height: 12px;
  margin-bottom: 0;
  opacity: 0.33;
  margin-top: 5px;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;

  color:  rgb(30, 29, 29);
  font-size: 16px;
  font-weight: 100;
  line-height: 19px;
}


li:first-letter {
  text-transform: capitalize;
}

.weather-app-wrapper {
  max-width: 600px;
  margin: 30px auto;
}

.weather-app {
  padding: 20px;
  border: 1px solid  rgb(30, 29, 29);
  border-radius: 50px;
}

h2 {
  color: rgb(58, 56, 56);
  font-size: 20px;
  font-weight: 100;
  line-height: 28px;
  max-width: 600px;
  margin: 30px auto;
}
.overview {
  margin-bottom: 20px;
}

.weather-temperature img {
  margin-right: 5px;
  height: 50px;
  width: 50px;
}

.weather-temperature strong {
  color:  rgb(30, 29, 29);
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
}

.weather-temperature .units {
  position: relative;
  font-size: 16px;
  top: -34px;
  color:  rgb(30, 29, 29);
}

.weather-temperature .active {
  color:  rgb(30, 29, 29);
  cursor: default;
}

.weather-temperature .active:hover {
  text-decoration: none;
}

.weather-forecast div.row{
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
  text-align: center;
  color: rgb(30, 29, 29);
  display: flex;
  justify-content: space-between;
}


.weather-forecast-date {
  font-size: 16px;
  opacity: 0.5;
}

.weather-forecast-temperature-min {
  opacity: 0.5;
}

.weather-forecast-temperatures {
  font-size: 16px;
}

.weather-forecast img {
  width: 70px;
  height: 70px;
  display: block;
  margin: auto;
}

img {
  width: 70px;
  display: block;
  margin: auto;
  margin-top: 15px;
}

img.buro  {
  width: 30px;
  display: block;
  margin: auto;
}

a {
  color:  rgb(30, 29, 29);
  text-decoration: none;
  background-color: transparent;
}

.btn-primary {
  color:  rgb(30, 29, 29);
  border-color:  rgb(30, 29, 29);
  background-color: #d9f4ff;
  border-radius: 50px;
  padding: 10px;
  text-align: center;
}

input#city-input.form-control {
  border-color:  rgb(30, 29, 29);
  background-color: #d9f4ff;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
}

.predictions {
  border: 1px solid #000000;
  filter: drop-shadow(3px 4px 11px #00A0E0);
  border-radius: 50px;
  max-width: 600px;
  margin: auto;
}

p {
  margin: auto;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
}


button {
margin-top: 30px;
background: rgb(255, 255, 255);
width: 200px;
border: 1px solid  rgb(30, 29, 29);
border-radius: 50px;
}

.col-6 {
  margin: 0 auto;
  text-align: center;
}

.btn-primary:hover {
  background-color: rgb(250, 202, 8);
}

/* Для екранів з шириною менше або дорівнює 576 пікселів */
@media (max-width: 576px) {
  .weather-app-wrapper {
    margin-top: 20px;
  }
  
  .weather-app form {
    margin-bottom: 20px;
  }
  
  .weather-app .overview {
    flex-direction: column;
    text-align: center;
  }
  
  .weather-app .overview .row {
    flex-direction: column;
  }
  
  .weather-app .overview .col-6 {
    width: 100%;
  }
  
  .weather-app .weather-forecast {
    margin-top: 20px;
  }
  
  .weather-app h2 {
    font-size: 20px;
    margin-top: 20px;
  }
  
  .weather-app p {
    font-size: 14px;
  }
  
  .weather-app button {
    font-size: 14px;
  }
  
  .weather-app small {
    font-size: 10px;
  }

  .search-btn {
    margin-bottom: 10px;
  }
}

/* Для екранів з шириною більше 576 пікселів */
@media (min-width: 577px) {
  
  .weather-app-wrapper {
    margin-top: 50px;
  }
  
  .weather-app .overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .weather-app .overview .row {
    flex-direction: row;
  }
  
  .weather-app .overview .col-6 {
    width: 50%;
  }
  
  .weather-app h2 {
    font-size: 24px;
    margin-top: 50px;
  }
  
  .weather-app p {
    font-size: 16px;
  }
  
  .weather-app button {
    font-size: 12px;
  }
  
  .weather-app small {
    font-size: 10px;
  }
}

/* Для екранів з шириною більше або дорівнює 280 пікселів */
@media (min-width: 280px) {
  .weather-app-wrapper {
    margin-top: 20px;
  }
  
  .weather-app form {
    margin-bottom: 20px;
  }
  
  .weather-app .overview {
    flex-direction: column;
    text-align: center;
  }
  
  .weather-app .overview .row {
    flex-direction: column;
  }
  
  .weather-app .overview .col-6 {
    width: 100%;
  }
  
  .weather-app .weather-forecast {
    margin-top: 20px;
  }
  
  .weather-app h2 {
    font-size: 20px;
    margin-top: 20px;
  }
  
  .weather-app p {
    font-size: 12px;
  }
  
  .weather-app button {
    font-size: 12px;
  }
  
  .weather-app small {
    font-size: 10px;
  }

}


