* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Astrojets';
    src: url('../ttf/AstrojetsRegular.ttf');
    ascent-override: 80%;
    descent-override: 0%;
}

html, body {
    color: #ffffffaf;
    font-family: Astrojets, sans-serif;
    background: #0f0f0f;
    transition: all 500ms ease;
    margin: unset;
}

#app {
    display: flex;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
}

.rotate {
    animation: rotating 1s linear infinite;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
