:root {
  --darkBlue: #19313e;
  --cream: #ffe4c4;
  --emerald: #40755e;
  --gold: #956d3c;
  --bronze: #634625;
}

body {
  margin: 0;
  padding:0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--darkBlue);
  font-family: sans-serif;
}
.loading {
  display: flex;
  animation: appear 1.2s ;

}
.obj {
  width: 6px;
  height: 40px;
  background-color: var(--gold);
  margin: 0 3px;
  border-radius: 10px;
  animation: lineLoader 1s linear 10;
  /* transform-origin: bottom; */
}
@keyframes lineLoader {
  0% {transform: scaleY(0.1)}
  50% {transform: scaleY(1)}
  100% {transform: scaleY(0.1)} 
}
@keyframes appear {
  0% {opacity: 0;}
  90% {opacity: 0;}
  1000% {opacity: 1;}
}
.obj:nth-child(2) {
  animation-delay: .1s;
}
.obj:nth-child(3) {
  animation-delay: .2s;
}
.obj:nth-child(4) {
  animation-delay: .3s;
}
.obj:nth-child(5) {
  animation-delay: .4s;
}
.obj:nth-child(6) {
  animation-delay: .5s;
}
.obj:nth-child(7) {
  animation-delay: .6s;
}
.obj:nth-child(8) {
  animation-delay: .7s;
}