@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  color: white;
}

.container {
  width: 100vw;
  height: 100vh;
  background-color: #27ae60;
}

.box {
  /*position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);*/
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
}

.spinner {
  height: 50px;
  width: 50px;
  border: 4px solid #2ecc71;
  border-top: 4px solid white;
  border-radius: 50%;
  /*margin-left: 35%;*/
  transition-property: transform;
  animation-name: rotate;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#para {
  width: 100%;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
