* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: sans-serif;
}

/* фон с гербом */
.bg {
    position: fixed;
    inset: 0;
    background: url("gerb.png") center center no-repeat;
    background-size: cover;
    filter: blur(2px);
    z-index: -1;
}

/* центрирование фото */
.content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
}
