        body {
            /* Фоновое изображение "sarentino.jpg" */
            background-image: url('../imgs/sarentino0.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            background-attachment: fixed;
            min-height: 100vh;
            margin: 0;

            /* Flexbox для центрирования */
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .header-container {
            padding: 30px 50px;
            background-color: rgba(0, 0, 0, 0.55);
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        h1 {
            color: white;
            font-size: 4em;
            margin: 0;

            /* Стиль шрифта */
            font-family: 'Playfair Display', serif;
            font-style: italic; /* Наклонный */
            font-weight: 700;

            /* Тень для текста */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }