/* .row {
    display: flex;
    height: 100vh;
    align-self: center;
}

.col {
    width: 100%;
    height: 200px;
    border: 1px solid black;
}

.box-1 {
    background-color: green;
    order: 3;
     align-self: flex-end; 
}

.box-2 {
    background-color: red;
    order: 1;

}

.box-3 {
    background-color: blue;
    order: 2;
        align-self: center;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background-color: #001f25;
}

.loader {
    position: relative;
    width: 300px;
    height: 300px;
}

.loader span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(calc(36deg * var(--i)));
}

.loader span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid #00efff;
    box-sizing: border-box;
    box-shadow: 0 0 20px #00efff,
     -30px -30px 0 #00efff,
     -30px -30px 20px #00efff,
     30px 30px 0 #00efff,
     30px 30px 20px #00efff,
     30px -30px 0 #00efff,
     30px -30px 20px #00efff,
     -30px 30px 0 #00efff,
     -30px 30px 20px #00efff;
     animation: animated 4s linear infinite;
     transform-origin: 20px;
     animation-delay: calc(-0.25s * var(--i));
     transition: 2s;
}

.loader:active span::before {
    transform-origin: 250px;
    box-shadow: 0 0 20px #00efff,
    -200px -200px 0 #00efff,
    -200px -200px 20px #00efff,
    200px 200px 0 #00efff,
    200px 200px 20px #00efff,
    200px -200px 0 #00efff,
    200px -200px 20px #00efff,
    -200px 200px 0 #00efff,
    -200px 200px 20px #00efff;
}

@keyframes animated{
    0% {
        filter: hue-rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
        transform: rotate(360deg);
    }
}













