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

html, body {
    height: 100%;
}

body {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

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

.photo {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .photo {
        max-width: 95vw;
        max-height: 95vh;
    }
}