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

html, body {
    width: 100%;
    height: 100%;
}

body {
    background: 
        repeating-linear-gradient(
            -80deg,
            rgba(255, 255, 255, 0.04) 0px,
            rgba(255, 255, 255, 0.04) 4px,
            transparent 4px,
            transparent 8px
        ),
        repeating-linear-gradient(
            -80deg,
            transparent 0px,
            transparent 4px,
            rgba(0, 0, 0, 0.02) 4px,
            rgba(0, 0, 0, 0.02) 8px
        ),
        linear-gradient(to bottom, #fbfbfb, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    max-height: 600px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Адаптивность для малых экранов */
@media (max-width: 768px) {
    .container {
        width: 95vw;
        height: 95vh;
        max-width: 600px;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 80vw;
        height: 80vh;
        max-width: 350px;
        max-height: 280px;
    }
}
