@font-face {
  font-family: "boogalooregular";
  src: url("./font/boogaloo-regular-webfont.woff2") format("woff2"), url("./font/boogaloo-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.loading {
  width: 10rem;
  height: 10rem;
  border: 5p solid white;
  border-top: 20px solid white;
  border-radius: 100%;
  margin: auto;
  margin-top: 10rem;
  display: none;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
}

.loading.display {
  display: block;
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body {
  background-image: url(./imgs/leaves.jpg);
  background-size: 100vw 100vh;
}

.WeatherNow {
  text-align: center;
  font-family: boogalooregular;
  color: white;
  margin-top: 15rem;
  display: grid;
  justify-content: center;
}

.mainWeather {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  left: 3rem;
}

p.weather {
  place-self: center;
  position: relative;
  left: 1rem;
}

.weather, .temp.now {
  font-size: 4rem;
  margin: 0.6rem;
}

.place, .feel, .hl, .today {
  font-size: 1.5rem;
}

.weatherIcon img {
  width: 9rem;
}

.feelIcon img {
  width: 2rem;
  position: relative;
  top: 0.3rem;
}

.feel {
  display: inline-flex;
  align-items: baseline;
  gap: 1rem;
  margin: 0.5rem;
}

.hl {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  left: 1rem;
}

.maxTemp {
  margin-left: 2rem;
}

.temps {
  display: flex;
  gap: 30px;
}

p.temp.now {
  font-size: 6rem;
  padding-left: 5rem;
}

.tempDetails {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

button.convertTemp {
  background-color: rgba(255, 255, 255, 0.5411764706);
  color: #016121;
  border-radius: 5px;
  border: none;
  padding: 2px 10px;
  font-size: 1.5rem;
  font-family: "boogalooregular";
  position: relative;
  left: 1rem;
}

.timeNPlace {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 3rem;
}

.today {
  display: flex;
  gap: 1rem;
}

.searchW {
  display: flex;
  justify-content: center;
  position: relative;
  left: 5rem;
}

input {
  width: 30rem;
  height: 2rem;
  border-radius: 1rem;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.5411764706);
  border: none;
  font-family: boogalooregular;
}

input:focus {
  color: #016121;
  font-size: 1.5rem;
  outline: none;
}

input::-moz-placeholder {
  color: #016121;
  font-size: 1.5rem;
  font-family: boogalooregular;
}

input:-ms-input-placeholder {
  color: #016121;
  font-size: 1.5rem;
  font-family: boogalooregular;
}

input::placeholder {
  color: #016121;
  font-size: 1.5rem;
  font-family: boogalooregular;
}

#searchBtn {
  position: relative;
  right: 3rem;
  top: 0.4rem;
  border-radius: 50%;
  height: 2.2rem;
  width: 2.2rem;
  background-color: rgba(255, 255, 255, 0);
  border: none;
}

#searchBtn svg {
  stroke: #016121;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5411764706);
  color: #016121;
  text-align: center;
  padding: 5px 0 10px 0;
  font-family: boogalooregular;
  font-size: 14pt;
}

svg.feather.feather-github {
  stroke: #016121;
  position: relative;
  top: 6px;
}/*# sourceMappingURL=styles.css.map */