:root {
    --theme: #0000ee;
    --body: #1c1c1c;
    --theme-alt: #6ff203;
}

#big-star {
    -webkit-animation: rotating 50s linear infinite;
    animation: rotating 50s linear infinite;
    margin-top: -24px;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

img {
    max-width: 60%;
}

button {
    box-shadow: 0 0 10px var(--theme);
    width: 120px;
    height: 56px;
    cursor: pointer;
    color: var(--theme);
}