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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    overflow: hidden;
}

.graphic-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.main-graphic {
    max-width: 60%;
    max-height: 60%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive design for different screen sizes */
@media (max-width: 768px) {
    .main-graphic {
        max-width: 70%;
        max-height: 70%;
    }
}

@media (max-width: 480px) {
    .main-graphic {
        max-width: 80%;
        max-height: 80%;
    }
} 