*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 10px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #2D353D;
}

#inCidade {
  padding: 5px 10px;
  outline: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 2px solid #707070;
  border-right: none;
  background: #2D353D;
  color: #D9D9D9;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

input[type="text"]::placeholder {
  color: #8a8a8a;
}

#inBuscar {
  outline: none;
  border: none;
  padding: 5px 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 2px solid #707070;
  border-left: none;
  background: #3b4651;
  color: #D9D9D9;
  margin-left: -3px;
  letter-spacing: 1px;
  font-weight: bold;
  cursor: pointer;
}

.container-card {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #2D353D;
  width: 350px;
  height: 400px;
  border-radius: 30px;
  padding: 25px 20px 10px 20px;
  border: 2px solid #707070;
  border-radius: 27px;
  box-shadow:  6px 6px 12px #1f2429,
             -6px -6px 12px #3b4651;
}

.card-city {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: #D9D9D9;
}

.card-city__item,
.card-city__item2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #707070;
  font-size: .9rem;
  padding: 2px 8px;
  border-radius: 10px;
  box-shadow:  2px 2px 4px #242b31,
             -3px -3px 4px #363f49;
  letter-spacing: .1rem;
}

.card-img {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}

.card-img img {
  width: 50%;
}

.container-card__info {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  color: #D9D9D9;
}

.card__info1,
.card__info2 {
  display: flex;
}

.card__info1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: .7rem;
  letter-spacing: .1rem;
  box-shadow:  2px 2px 4px #242b31,
              -3px -3px 4px #363f49;
  border-radius: 1rem;
  border: 1px solid #707070;
}

.card__info-item1,
.card__info-item2,
.card__info-item3 {
  padding: 5px 10px;
}

.card__info2 {
  font-size: 4rem;
  font-weight: bold;
}

.card__info2 sup {
  font-size: 1.4rem;
}

footer {
  color: #D9D9D9;
  letter-spacing: 2px;
}