@font-face {
  font-family:'Montserrat';
  font-weight:400;
  font-style:normal;
  font-display:swap;
  src:url("regular.woff2") format("woff2"),
  url("regular.woff") format("woff")
}
@font-face {
  font-family:'Montserrat Semi Bold';
  font-weight:600;
  font-style:normal;
  font-display:swap;
  src:url("semibold.woff2") format("woff2"),
  url("semibold.woff") format("woff")
}
@font-face {
  font-family:'Montserrat Bold';
  font-weight:700;
  font-style:normal;
  font-display:swap;
  src:url("bold.woff2") format("woff2"),
  url("bold.woff") format("woff")
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
a:visited {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

body {
	font: 36px "Montserrat", Arial, sans-serif;
	background: #089c2c;
	color: white;
}

div#header {
	font-family: "Montserrat", Arial, sans-serif;
	text-align: center;
	color: white;
	font-size: large;
}

#container {
  color: white;
  background: #089c2c;
  width: 1920px;
  height: 1080px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none !important;
}

#content {
  
  flex: 0 0 120px;
}
.loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}            

.middle {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);                
}

.advise{
	font-family: "Montserrat", Arial, sans-serif;
	color: white;
	font-size: initial;
}

.button {
  background-color: #f44336; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
}