
@font-face {
  font-family: 'Century Gothic';
  src: url('./fonts/centurygothic.ttf') format('opentype');
}

@font-face {
  font-family: 'Century Gothic Bold';
  src: url('./fonts/centurygothic_bold.ttf') format('opentype');
}

:root {
    --moeve-green: #90FFBB;
    --moeve-blue: #0288C5;
    --blue-text: #004456;
    --blue-clear: #CDE5F1;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Century Gothic';
    color: var(--blue-text);
    overscroll-behavior: none; /* Modern browsers */
    overscroll-behavior-y: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

button {
  outline: none;
  border: none;
}