body{
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  margin: 5% 10%;
}

.pageTitle{
  font-size: 3rem;
  font-weight: 900;
  text-decoration: wavy;
  text-decoration-skip-ink: all;
  text-decoration-color: #212121;
  color: #323232;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #56829e ;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

#weatherBtn{
  align-self: center;
  justify-self: center;
  text-align: center;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


@media screen and (max-width: 768px) and (orientation: portrait) {
  body{
    margin: 10% 5%;
  }
}
