body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: "Roboto", serif;
            overflow: hidden;
        }

        /* Видео на фоне */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Чтобы видео заполнило весь экран */
            pointer-events: none;
        }

        /* Центрирование контента */
        .content {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            text-align: center;
            color: white;
            z-index: 1;
            position: relative;
        }
		
		.content-block {
			display: block;
		}

        .logo {
            max-width: 750px;
            margin-bottom: 20px;
        }
		
		.quote {
			width: auto; /* Allow the width to adapt based on content */
			max-width: 700px; /* Optional: Ensures the width doesn't exceed a certain limit */
			height: 80px;
			border: none;
			padding: 0; /* Remove extra padding */
			background-image: 
				url('bg_quote_left.png'), /* Left slice */
				url('bg_quote_middle.png'), /* Middle slice */
				url('bg_quote_right.png'); /* Right slice */
			background-repeat: no-repeat;
			background-size: 35px 100%, 100% 100%, 35px 100%; /* Stretch middle, keep left and right fixed */
			background-position: left center, center center, right center; /* Position the slices */
			background-color: transparent, transparent, transparent;
			color: white;
			font-size: 24px;
			font-family: 'Roboto italic';
			cursor: pointer;
			color: #D6AE5A;
			display: flex;
			justify-content: center;
			align-items: center;
			text-align: center;
		}
		
		.quote-text {
		}
		
		.download-button {
			width: 480px;
            height: 150px;
            border: none;
            padding: 0;
			background-color : transparent;
            background-image: url('btn_set_1.png'); /* PNG image with sliced sections */
            background-repeat: no-repeat; /* Prevent repeating the image */
            background-size: auto 100%;   /* Keep the height of the image at 100% but scale the width to fit */
            /* Setting the sections of the sliced image: */
            background-position: 0 0; /* Default (first section) */
            color: white;
            font-size: 48px;
			font-family: 'Roboto';
            cursor: pointer;
		}
		
        .download-button:hover {
            background-image: url("btn_set_2.png");
			color: #C9E3FF;
			transition: 0.3s;
        }
		
		.button-text{
			position: relative;
			top: -16px; /* Adjust this value to move the text upwards */
			margin: 0
		}

        /* Футер */
        footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 0;
            text-align: center;
        }
}