*{
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Mono', monospace;
}
/* Loanding */
.pl {
    display: block;
    width: 9.375em;
    height: 9.375em;
}
  .pl__arrows,
  .pl__ring-rotate,
  .pl__ring-stroke,
  .pl__tick {
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
} 
  .pl__arrows {
    animation-name: arrows42;
    transform: rotate(45deg);
    transform-origin: 16px 52px;
}
  .pl__ring-rotate,
  .pl__ring-stroke {
    transform-origin: 80px 80px;
} 
  .pl__ring-rotate {
    animation-name: ringRotate42;
}
  .pl__ring-stroke {
    animation-name: ringStroke42;
    transform: rotate(-45deg);
}
  .pl__tick {
    animation-name: tick42;
}
  .pl__tick:nth-child(2) {
    animation-delay: -1.75s;
}
  .pl__tick:nth-child(3) {
    animation-delay: -1.5s;
} 
  .pl__tick:nth-child(4) {
    animation-delay: -1.25s;
}
  .pl__tick:nth-child(5) {
    animation-delay: -1s;
}
  .pl__tick:nth-child(6) {
    animation-delay: -0.75s;
}
  .pl__tick:nth-child(7) {
    animation-delay: -0.5s;
} 
  .pl__tick:nth-child(8) {
    animation-delay: -0.25s;
}
  /*Loading Animations */
  @keyframes arrows42 {
    from {
      transform: rotate(45deg);
    }
    to {
      transform: rotate(405deg);
    }
  } 
  @keyframes ringRotate42 {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(720deg);
    }
  } 
  @keyframes ringStroke42 {
    from,
      to {
      stroke-dashoffset: 452;
      transform: rotate(-45deg);
    }
    50% {
      stroke-dashoffset: 169.5;
      transform: rotate(-180deg);
    }
  } 
  @keyframes tick42 {
    from,
      3%,
      47%,
      to {
      stroke-dashoffset: -12;
    }
    14%,
      36% {
      stroke-dashoffset: 0;
    }
  }


.temperatura{
    padding: 10%;
    width: 80%;
}
.inputBusca{
    margin: 2%;
}
/*botao Mapa*/
.main_div {
  --color: #3992e6;
  position: relative;
  z-index: 1;
  width: 35%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10%;
  margin-bottom: 10%;
}
.main_div::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: transparent;
  top: -7px;
  left: -7px;
  z-index: -5;
  border-top: 3px solid var(--color);
  border-left: 3px solid var(--color);
  transition: 0.5s;
}
.main_div::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: transparent;
  bottom: -7px;
  right: -7px;
  z-index: -5;
  border-right: 3px solid var(--color);
  border-bottom: 3px solid var(--color);
  transition: 0.5s;
}
.main_div:hover::before {
  width: 100%;
  height: 100%;
}
.main_div:hover::after {
  width: 100%;
  height: 100%;
}
.main_div button {
  padding: 0.7em 2em;
  font-size: 16px;
  background: #222222;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

header{
  background-color: #403F6F;
  color: #fff;
  font-size: 150%;
  padding: 1em;
}
main{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86vh;
  background-image: url(../imagens/mundo.jpg);
  background-size: cover;
}

#box{
  border: 2px solid #222222;
  width: 30%;
  min-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: #e4eaff 0px 8px 24px,
              #e4eaff 0px 16px 56px,
              #e4eaff 0px 24px 80px;
  background-color: #e4eaffb0;
}

#box p{
  margin: 3%;
  text-align: center;
}
#box .principal{
  margin-top: 5%;
  font-weight: 800;
}

.inputBusca{
  display: flex;
  align-items: center;
  justify-content: center;
}
#localizacao{
  font-size: 120%;
  padding: 1%;
  margin-bottom: 10%;
}
#btnBuscar{
  background-color: #222222;
  width: 2.5em;
  margin-bottom: 10%;
}
#btnBuscar:hover{
  background-color: #3992e6;
}
#btnBuscar img{
  width: 100%;
}