body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* gray с прозрачностью */
    background-blend-mode: overlay; /* накладываем цвет на картинку */

    z-index: -1; /* отправляем назад, чтобы контент был сверху */
}


.base_cont {
    display: flex;
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    min-height: 100vh;
}
