html, body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	--black: #070A25;
	--shadow: #001633;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito-bold-webfont.woff2') format('woff2'),
         url('fonts/nunito-bold-webfont.woff') format('woff');
	font-weight: bold;
  font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito-regular-webfont.woff2') format('woff2'),
         url('fonts/nunito-regular-webfont.woff') format('woff');
    font-display: swap;
}

html, body, button {
	font-family: Nunito, Roboto, sans-serif;
}

body {
  /* will be hidden by the background HTML element */
  background: rgb(0,21,62);
  background: radial-gradient(ellipse at center, rgba(0,47,96,1) 0%, rgba(0,21,62,1) 33%, rgba(0,21,62,1) 100%)!important;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

::selection {
  background: #FDCE73;
}
::-moz-selection {
  background: #FDCE73;
}