body {
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  padding: 5vmin 0;
  width: 100%;
  height: 100vh;
  position: relative;
}

.bg {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  filter: blur(30px);
  background-image: url(../img/kyiv.jpg);
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p,
span,
a,
ul,
li {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

.weather {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 10;
  padding: 0 2vmin;
  position: relative;
}

.weather-container {
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  padding: 2vmin;
  border-radius: 10px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/kyiv.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.city {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3%;
}

.weather-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-select {
  width: 35%;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  background-color: transparent;
  background-image: url(../img/arrow.svg);
  border: 1px solid #fff;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  margin-bottom: 5vmin;
}

.form-select:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}

.form-select option {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.form-select option:focus {
  background: #000;
}

.info {
  display: flex;
  align-items: center;
}

.info-icon {
  margin-right: 5%;
}

.info-icon .wi {
  font-size: 6rem;
}

.info-temp {
  font-size: 7rem;
}

.wind {
  display: flex;
  align-items: center;
}

.wind-speed {
  font-size: 1.5rem;
  margin-right: 5%;
}

.wind-direction {
  font-size: 3rem;
}

.details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.date {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  /* width: 330px; */
}

.sun {
  display: flex;
  align-items: center;
}

.sun .wi {
  font-size: 1.5rem;
  margin-right: 1vmin;
}

.sun span {
  font-size: 1.25rem;
}

.sun .sunrise {
  margin-right: 13vmin;
}

.hourly-list {
  display: flex;
  flex-direction: column;
  row-gap: 2vmin;
}

.hourly-item {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
}

.hourly-item div {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.weather-list-item span {
  font-size: 2rem;
}

/* ================================================ */

@media (min-width: 768px) {
  .container, .container-md, .container-sm {
     max-width: 100%;
  }
}

@media (min-width: 576px) {
  .container, .container-sm {
     max-width: 100%;
  }

  .weather-card {
    margin-bottom: 8vmin;
  }
}

@media (max-width: 576px) {
  .weather {
    height: auto;
  }

  .weather-container {
    padding: 4vmin;
  }

  .form-select {
    width: 100%;
  }

  .weather-card {
    margin-bottom: 8vmin;
  }
}