body {
  margin: 0px auto;
  padding: 0;
  text-align: center;
  background-color: #7ebef3;
  font-family: 'PT Sans Narrow', sans-serif;
}

h2 {
  font-size: 48px;
}

form {
  margin: 0 auto;
  width: 300px;
  display: -ms-grid;
  display: grid;
  font-size: 24px;
  color: black;
  font-weight: 600;
}

form input {
  margin-top: 10px;
  border-radius: 5px;
  border-style: none;
  height: 36px;
  font-size: 20px;
  color: black;
}

.temperature {
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  width: 150px;
  padding: 5px;
  font-size: 24px;
  /* Rounded sliders */
}

.temperature .switch {
  position: relative;
  display: inline-block;
  top: 30%;
  width: 60px;
  height: 34px;
}

.temperature .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.temperature .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.temperature .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #0c69f5;
  -webkit-transition: .4s;
  transition: .4s;
}

.temperature input:checked + .slider {
  background-color: #2196F3;
}

.temperature input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #2196F3;
          box-shadow: 0 0 1px #2196F3;
}

.temperature input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.temperature .slider.round {
  border-radius: 34px;
}

.temperature .slider.round:before {
  border-radius: 50%;
}

#weather {
  width: 500px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  -ms-grid-columns: 2fr 2fr 0.5fr;
      grid-template-columns: 2fr 2fr 0.5fr;
  background-color: #2196F3;
  border-radius: 25px;
}

#weather #city-data__temperature {
  font-size: 36px;
  font-weight: bold;
}

#weather #weather-description {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

#weather .city-data {
  display: -ms-grid;
  display: grid;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: white;
  font-size: 24px;
  -ms-flex-line-pack: center;
      align-content: center;
  border-left: 3px solid black;
}

#weather .city-data ul > li {
  list-style: none;
}

#change {
  background-color: #f1c917;
  font-size: 36px;
  border: 3px solid black;
  text-shadow: none;
  border-radius: 5px;
}

.backboard {
  width: 75px;
  height: 308px;
  margin: auto;
  padding-top: 10px;
  background: white;
  border: 4px solid black;
  border-radius: 15px;
  color: #2e94f3;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 0 1px #777, 1px 0.5px 0 #000;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tube {
  width: 7px;
  height: 200px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#07a1e9), color-stop(#dfd), color-stop(#dfd), color-stop(#dfd), to(#0b22f7));
  background: linear-gradient(to right, #07a1e9, #dfd, #dfd, #dfd, #0b22f7);
  border: 1px solid #3c07ff;
  border-bottom: 0;
  border-radius: 4px;
}

#vein {
  width: 3px;
  height: 5px;
  margin: 192px 0 0 1px;
  background-color: #e00;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-animation-name: alcohol;
          animation-name: alcohol;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-webkit-keyframes alcohol {
  from {
    height: 5px;
    margin: 192px 0 0 2px;
  }
  to {
    height: 195px;
    margin: 2px 0 0 2px;
  }
}

@keyframes alcohol {
  from {
    height: 5px;
    margin: 192px 0 0 2px;
  }
  to {
    height: 195px;
    margin: 2px 0 0 2px;
  }
}

.bowl {
  width: 18px;
  height: 18px;
  margin: -3px auto 0 auto;
  background-color: #e00;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 50px;
}
/*# sourceMappingURL=app.css.map */