/* Базовые стили */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../font/ProximaNova-Regular.woff') format('woff'),
        url('../font/ProximaNova-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../font/ProximaNova-Bold.woff') format('woff'),
        url('../font/ProximaNova-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-color-base-light-mode: #090909;
    --font-color-base-dark-mode: #cdcdcd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    display: inline-flex;
    color: inherit;
    text-decoration: none;
    -webkit-hyphens: auto;
    hyphens: auto;
    cursor: pointer;
}

h1, h2 {
    margin: 0;
      margin-top: 0px;
      margin-bottom: 0px;
    padding: 0;
    font-weight: bold;
    text-align: center;
}

/* h2 {
    text-align: center;
} */

body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Proxima Nova', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Standard syntax */
    line-height: 1.6;
}

body.dark-mode {
    background: radial-gradient(circle, #1d1d1d, #090909);
    color: var(--font-color-base-dark-mode);
}

body.light-mode {
    /* background: radial-gradient(circle, #f5f5f5, #e0e0e0); */
    background: radial-gradient(circle, #f5f5f5, #ffffff);
    color: var(--font-color-base-light-mode);
}

  