@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
    height: 100vh;

    display: grid;
    place-items: center;
}

.spinner {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    border: 3px dashed blueviolet;
    border-top-color: transparent;
    border-bottom-color: transparent;

    animation: spin 1s infinite;
}
