/* Nunito 200 — self-hosted, was fonts.googleapis.com */
@font-face {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url(../fonts/nunito-200-latin.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url(../fonts/nunito-200-latin-ext.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

body {
	margin: 0;
	padding: 0;
}

div.container, #fullpage {
	margin: 20px;
	line-height: 1.5;
	word-break: break-all;
	font-family: Nunito, 'Sans-serif';
	font-weight: 200;
	font-size: 125%;
}

@media only screen and (min-width: 768px) {
	div.container, #fullpage {
		line-height: 1.7;
		font-size: 170%;
	}
}

@media only screen and (min-width: 1024px) {
	div.container, #fullpage {
		line-height: 1.75;
		font-size: 180%;
	}
}


@media only screen and (min-width: 1440px) {
	div.container, #fullpage {
		line-height: 1.75;
		font-size: 240%;
	}
}

@media only screen and (min-width: 1600px) {
	div.container, #fullpage {
		line-height: 1.75;
		font-size: 280%;
	}
}

body, div.container {
	overflow: hidden;
}



/*

yellow ffff2f
dark oragne ff6800
orange ff9506
pink ff0053
green cbff31
light green b1ff37
teal b1ffa7
green yellow eaff31
red ff0000

light blue a5ffff
blue 64a6ff


*/

span {
	background-color: #ffff2f; /* yellow */
	color: black;
	font-weight: bold;
}

span:nth-child(2n) {
  background-color: #b1ffa7; /* teal */
}

span:nth-child(3n) {
  background-color: #ff9507; /* orange */;
}

span:nth-child(4n) {
  background-color: #cbff31; /* green */
}

span:nth-child(5n) {
  background-color: #ff0053; /* pink */
}

span:nth-child(6n) {
  background-color: #64a6ff; /* blue */
}

span:nth-child(7n) {
  background-color: #ff6800; /* dark orange */
}

span:nth-child(8n) {
  background-color: #b1ff37; /* light green */
}

span:nth-child(9n) {
  background-color: #a5ffff; /* light blue */
}

span:nth-child(10n) {
  background-color: #ff0000; /* red */
}

span:nth-child(11n) {
  background-color: #ff0053; /* pink */
}

span:nth-child(12n) {
  background-color: #ff0053; /* pink */
}

::selection {
  background: white;
  color: black;
}

.loader {
	display: inline;
	padding: 0 5px;
}

.loader span {
    display: inline-block;
    vertical-align: baseline;
    width: 5px;
    height: 5px;
    background: black;
    border-radius: 50px;
    -webkit-animation: loader 0.9s infinite alternate;
    -moz-animation: loader 0.9s infinite alternate;
}

.loader span:nth-of-type(2) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}

.loader span:nth-of-type(3) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}

@-webkit-keyframes loader {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(0);
  }
  100% {

    opacity: 0.1;
    -webkit-transform: translateY(-10px);
  }
}

@-moz-keyframes loader {
  0% {
    -moz-transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-10px);
  }
}
.hide-button {
  display: none;
}

/*.touch .hide-button { display: block; }*/

#unmute-button {
  --unmute-size: 30px!important;
  background: white!important;
  border: 2px solid rgb(216, 216, 216)!important;
}

@media only screen and (min-width: 1024px) {
  #unmute-button {
    --unmute-size: 40px!important;
    right: 15px!important;
    top: 15px!important;
  }
}


