* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #000000;
}

main {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle {
    position: absolute;
    animation: rotate 40s linear infinite;
}

.sheep {
    position: relative;
    z-index: 1;
}

.coming-soon {
    color: #ffffff;
    font-family: system-ui, sans-serif;
    font-size: 1.25rem;
    margin-top: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
