@font-face {
    font-family: 'DieselEasy';
    src: url('fonts/DieselEasy.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'DieselEasy';
    src: url('fonts/DieselEasy_Bold.ttf') format('truetype');
    font-weight: bold;
}

body {
    font-family: 'DieselEasy', sans-serif;
    line-height: 1.8;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    background-color: #FAFAFA;
    color: #222;
    font-size: 18px;
}

h1 {
    font-size: 32px;
    margin-top: 0;
}

h2 {
    font-size: 26px;
    margin-top: 1.5em;
}

.video-wrapper {
    max-width: 100%;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden; /* обрезает углы видео и poster */
}

/* 🎬 Видео */
.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: contain;

    /* фикс Safari */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.small-video {
    max-width: 400px;
    margin: 20px auto;
}


@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .small-video {
        max-width: 100%;
    }
}