:root {
    /* Основные цвета */
    --bg-white: #FFF;
    --bg-gray: #EBEBEB;
    --bg-darkblue: #1D2136;
    --bg-black: #000;

    --border-section: #F4F3F3;
}


* {
    padding: 0;
    margin: 0;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
    scroll-behavior: smooth;
    color-scheme: light;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--bg-white);
}

article {
    width: 100%;
}

section, header {
    width: 100%;
    min-height: 788px;
    height: 100vh;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


/* Вся полоса прокрутки */
*::-webkit-scrollbar {
    width: 10px;
}

/* Задний фон полосы прокрутки */
*::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #EBEBEB;
}

/* Полоса прокрутки */
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #BEBEBE;
}


/* Ошибка в форме */
.form-error {
    opacity: 0;
    font-size: 16px;
    color: var(--text-red);

    margin-top: 20px;
}