body {
    margin: 0;
    height: 100vh;
    display:grid;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background-position: center;
    background-size: cover;
    background-image: url("LOGO.png");
    background-repeat: no-repeat;
    font-family: sans-serif;
    font-size: large;
    color: blue;
}

table, th, td {
  border: 1px dotted black;
  border-radius: 10px;
  width: fit-content;
  justify-content: center;
  justify-items: center;
}

.loader {
    position: absolute;
    width: 100%;
    height: 0px;
}

.bar {
    position: absolute ;
    top: 0%;
    left: 50%;
    width: 5px;
    height: 35px;
    background: #0018f4;
    border-radius: 5px;
    transform-origin: center -10px;
    opacity: 0;
    animation: fade 1.2s linear infinite;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.bar1 {
    transform: rotate(0deg);
    animation-delay: 0s;
}

.bar2 {
    transform: rotate(30deg);
    animation-delay: 0.1s;
}

.bar3 {
    transform: rotate(60deg);
    animation-delay: 0.2s;
}

.bar4 {
    transform: rotate(90deg);
    animation-delay: 0.3s;
}

.bar5 {
    transform: rotate(120deg);
    animation-delay: 0.4s;
}

.bar6 {
    transform: rotate(150deg);
    animation-delay: 0.5s;
}

.bar7 {
    transform: rotate(180deg);
    animation-delay: 0.6s;
}

.bar8 {
    transform: rotate(210deg);
    animation-delay: 0.7s;
}

.bar9 {
    transform: rotate(240deg);
    animation-delay: 0.8s;
}

.bar10 {
    transform: rotate(270deg);
    animation-delay: 0.9s;
}

.bar11 {
    transform: rotate(300deg);
    animation-delay: 1.0s;
}

.bar12 {
    transform: rotate(330deg);
    animation-delay: 1.1s;
}