* {
    margin: 0;
    padding: 0;
    z-index: 1;
    box-sizing: border-box;
}

body {
    background-image: url(sport.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Arial', Helvetica, sans-serif;
    color: #ffffff;
    line-height: 1.6;
}

:root {
    --index: calc(1vw + 1vh);
}

.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
}

#myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    transform: translateX(-50%) translateY(-50%);
}

/* Главный заголовок */
.about_us_title {
    text-shadow: 0 3px 3px #00000075;
    
    font-size: calc(var(--index) * 3);
    color: rgb(214, 224, 27);
    margin-left: 10vw;
    margin-top: 10vw;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    /* Тень для заголовка */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    font-family: 'Helvetica', sans-serif;
}

/* Контейнер с текстом */
.container_with_text_for_about_us {
    width: 100%;
    height: auto;
    margin-top: 20vh;
    background-color: rgba(255, 255, 255, 0.85);
    /* Полупрозрачный белый фон */
    display: flex;
    justify-content: space-between;
    padding: 5vh;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    /* Закругленные углы */
}

/* Раздел для текста */
.container_with_text_for_about_us .center {
    width: 66vw;
    padding-top: 2vh;
    text-align: justify;
    color: #333333;
    /* Тёмный цвет для текста */
    font-size: calc(var(--index) * 0.9);
    line-height: 1.8;
}

/* Стиль для текста, который выделяется */
.span_in_text_about_us {
    text-shadow: 0 3px 3px #00000075;
    font-size: calc(var(--index) * 1.3);
    padding-left: 1vw;
    font-weight: bold;
    color: rgb(214, 224, 27);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Общий стиль для параграфов */
.text_for_about_us {
    font-size: calc(var(--index) * 0.8);
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* Особенности для мелких абзацев */
.text_for_about_us small {
    font-size: calc(var(--index) * 0.6);
    font-style: italic;
    color: #777777;
}

/* Стиль для ссылок (если будут добавлены) */
.text_for_about_us a {
    color: rgb(214, 224, 27);
    text-decoration: none;
    font-weight: bold;
}

.text_for_about_us a:hover {
    color: #ffdd00;
    text-decoration: underline;
}

/* Мобильная адаптация */
@media (max-width: 1200px) {
    .about_us_title {
        font-size: calc(var(--index) * 2);
        margin-left: 5vw;
    }

    .container_with_text_for_about_us {
        flex-direction: column;
        padding: 4vh;
    }

    .container_with_text_for_about_us .center {
        width: 100%;
    }
}