@charset "UTF-8";

/* Fonts */
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-Extralight.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-Extralight.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-ExtralightItalic.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-ExtralightItalic.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-ExtralightItalic.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-Light.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-Light.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-LightItalic.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-LightItalic.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-Regular.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-Regular.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-Italic.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-Italic.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-Medium.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-Medium.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-MediumItalic.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-MediumItalic.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-Semibold.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-Semibold.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-SemiboldItalic.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-SemiboldItalic.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-Bold.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-Bold.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('/static/font/general-sans/GeneralSans-BoldItalic.woff2') format('woff2'),
       url('/static/font/general-sans/GeneralSans-BoldItalic.woff') format('woff'),
       url('/static/font/general-sans/GeneralSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'GeneralSans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  cursor: url('../image/mouse-pointer.svg'), auto;
}

body {
  background-color: #061635;
  color: #dadee7;
  line-height: 1.6;
  font-size: 16px;
}

body a {
    color: #dadee7;
    text-decoration: none;
}

body a:hover {
    cursor: url('../image/mouse-pointer-select.svg'), auto;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}