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 {
  z-index: 10;
  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: 5vmin;
  padding-top: 1vmin;
  padding-left: 1vmin;
  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%;
  padding-left: 4vmin;
}

.weather-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-left: 4vmin;
}

.form-select {
  width: 35%;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  background-color: transparent;
  background-image: url(../img/arrow.svg);
  border: none;
  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;
  margin-bottom: 10%;
}

.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;
  min-width: 317px;
}

.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;
}