@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --darkBlue: #19313e;
  --cream: #ffe4c4;
  --emerald: #40755e;
  --gold: #956d3c;
  --bronze: #634625;
}
body {
  margin: 0;
  height: 100vh;
  background-color: var(--darkBlue);
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
h2 {
  margin: 0;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  text-transform: uppercase;
  z-index: 1;
}
.box {
  position: absolute;
  top: 80%;
  left: 45%;
  width: 10px;
  height: 10px;
  border: 1px solid var(--bronze);
  animation: boxes 12s ease-in 20;
  transform: scale(0)
}
.box:nth-child(7) {
  top:40%;
  left:25%;
  border-color: var(--emerald);
  animation-delay: .4s;
}
.box:nth-child(3) {
  top:50%;
  left:75%;
  animation-delay: 1s;
}
.box:nth-child(4) {
  top:10%;
  left:90%;
  border-color: var(--gold);
  animation-delay: 1.4s;
}
.box:nth-child(5) {
  top:85%;
  left:10%;
  animation-delay: .8s;
}
.box:nth-child(6) {
  top:25%;
  left:50%;
  border-color: var(--cream);
  animation-delay: 2s;
}
@keyframes boxes  {
  0% {transform: scale(0) rotate(0deg);
  opacity: 1;}
  100% {transform: scale(20) rotate(960deg);
  opacity: 0;}
}