body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--darkBlue)
}
* {
  margin: 0;
  padding:0;
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
}
:root {
  --darkBlue: #19313e;
  --cream: #ffe4c4;
  --emerald: #40755e;
  --gold: #956d3c;
  --bronze: #634625;
}
h2 {
  color: #fff;
  font-weight: 500;
}
.loader {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: rotate 5s linear 10
}
.loader span:nth-child(1) {
 border-radius:74% 26% 70% 30% / 52% 52% 48% 48%
}
.loader span:nth-child(2) {
 border-radius:
 32% 68% 50% 50% / 64% 60% 40% 36%;
 animation-direction: reverse;
}
.loader span:nth-child(3) {
 border-radius:44% 56% 61% 39% / 40% 37% 63% 60%;
 animation-duration: 3s;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}
