@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;600&display=swap');

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
  background-color: #e0e0e0;
  columns: #707070;
}

.container {
  max-width: 400px;
  min-width: 400px;
}

.title {
  font-weight: 300;
  font-size: 32px;
}

.form-rounded {
  border-radius: 2em !important;
}
.back-card {
  border-radius: 40px !important;
}

.city-name {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.city-name p {
  font-weight: 400;
  font-size: 22pt;
}
.city-name span {
  font-weight: 400;
  font-size: 36pt;
  position: relative;
  top: -60px;
}

.temp span {
  font-weight: 100;
  font-size: 5em;
}
.card-mid {
  line-height: 1em;
  font-weight: 700;
  font-size: 1em;
  text-transform: capitalize;
}
.condition {
  line-height: 1em;
  font-weight: 500;
  font-size: 1em;
  text-transform: capitalize;
}
.high, .low {
  font-weight: 100;
}
.high::before {
  content: '';
  background: url('/public/img/up.svg') no-repeat;
  width: 10px;
  height: 15px;
  display: inline-block;
  position: relative;
  top: 3px;
}
.low::before {
  content: '';
  background: url('/public/img/down.svg') no-repeat;
  width: 10px;
  height: 15px;
  display: inline-block;
  position: relative;
  top: 3px;
}
.icon-container {
  border-radius: 100% !important;
  width: 100px;
  height: 100px;
  background: #202020;
}
.icon-container img {
  margin: auto;
}
.card-bottom {
  line-height: 0.5;
}
.card-bottom span {
  font-size: 12px;
}
.card-bottom p {
  font-size: 30px;
  font-weight: 300;
}

.pac-container {
  border-radius: 20px;
  padding: 10px;
  margin-top: 10px;
  border: solid 1px #86b7fe;
}