@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');

.container {
    width: var(--lg-width);
}

.redline {
    top: 0;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

* {
    font-family: 'Golos Text', 'Open Sans', 'sans-serif', 'FontAwesome';
    margin: 0;
    padding: 0;
}

body {
    background: var(--gray-100);
}

:root {
    --white: #fff;
    --gray-100: #D9D9D9;
    --gray-banner: #EAE9ED;
    --dark-notifiction: #1A1230;
    --error-red: #FFE6E6;
    --white-500: #F5F5F5;
    --disabled-gray: #E8E8E8;
    --active-blue: #1F1739;
    --active-blue-hover: #352d50;

    --lg-width: 1200px;

    --font-black: #272D37;
    --font-dark-gray: #6F6F6F;
    --font-gray: #a8a8a8;
}

.m-auto {
    margin: auto;
}