@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');

:root {
    --gradient-start: #000;
    --gradient-end: #000;
}

body {
    font-family: 'Fira Code', monospace;
    background: linear-gradient(-4deg, var(--gradient-start), var(--gradient-end));
    background-size: 400% 400%;
    color: rgb(255, 255, 255);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    cursor: none;
    /* Отключаем стандартный курсор */
}


.logo {
    width: 300px;
    height: 100px;
    margin-bottom: 20px;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.container span {
    color: #00d57f;
}

h1 {
    font-size: 3rem;
    margin: 10px 0;
}

p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.soon {
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: bold;
    color: #00d57f;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.color-picker {
    /* position: absolute;
    top: 30px;
    right: 30px; */
    z-index: 3;
    border: none;
    cursor: pointer;
    border-radius: 30%;
    outline: none;
}

.color-picker-container {
    /* position: absolute;
    top: 10px;
    right: 10px; */
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-label {
    color: white;
    font-size: 14px;
}

/* Кастомный курсор */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: yellow;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
    pointer-events: none;
    transform: translate(-50%, -50%);
}
.background-images {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.3;
        }
        
        .background-images img {
            position: absolute;
            max-width: 300px;
            transition: all 0.5s ease;
        }
        
        .buttons-container {
            position: fixed;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            z-index: 10;
        }
        
        .service-button {
            padding: 12px 25px;
            background-color: #000;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .service-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .frame{
    height:300px;
    width:300px;
    background:url(http://lorempixel.com/300/300);
    border-radius:60%;
    animation:spin 3s linear infinite;
    transform:rotate(-15deg);
    position:relative;
}
.frame:before{
    content:"";
    position:absolute;
    bottom:-40px;
    border-radius:50%;
    left:0;
    height:7%;
    width:100%;
    transform:rotate(15deg);
    background:rgba(255,255,255,0.6);
    box-shadow: 0 0 10px 2px rgba(255,255,255,0.6);
    
}
.frame:after{
    content:"";
    position:absolute;z-index:12;
    top:0;left:0;height:100%;width:100%;border-radius:50%;
box-shadow:inset -20px -20px 20px 2px #00d57f, inset 20px 20px 20px 5px rgba(200,200,200,0.4);    
}
@keyframes spin{
    to{background-position:-300px 0;}
}