/* Importing Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Global reset for common styling across all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* Styling for the main section container */
section {
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: royalblue;
}

/* Styling for each animated dot inside the .dots container */
section .dots span {
    position: absolute;
    height: 10px;
    width: 10px;
    background: #fff;
    border-radius: 50%;
    transform: rotate(calc(var(--i) * (360deg / 15))) translateY(35px);
    animation: animate 1.5s linear infinite;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
}

/* Keyframes for the fade-in and fade-out animation */
@keyframes animate {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}