body {
    margin: 0;
    background: #1a1a2e;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    max-width: min(90vw, 800px);
    aspect-ratio: 1/1;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
} 