@import url('https://fonts.googleapis.com/css?family=Lato:300,900|&display=swap');
@import url('https://fonts.googleapis.com/css?family=EB+Garamond&display=swap');

/* All Media Breakpoints for Custom CSS */
@media (min-width: 320px) {
	.div_content
	{
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media (min-width: 768px) {
	.div_content
	{
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 1200px) {
    .container{
        max-width: 900px;
    }
		.div_content
		{
			padding-left: 50px;
			padding-right: 50px;
		}
}

/* general */
body {
	font-size: 1em;
	font-family: 'Lato', sans-serif;
	font-weight: 300;

	background-image: url('images/background.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;


	color: #262525;

	margin-bottom: 60px;
}

/* headers */
h1 {
	font-size: 4em;
	text-align: center;
	font-family: 'EB Garamond', serif;
	font-weight: 400;
}
h2 {
	font-size: 2em;
	text-align: center;
	font-family: 'EB Garamond', serif;
	font-weight: 300;
}
h3 {
	font-size: 1.5em;
	text-align: center;
	font-family: 'EB Garamond', serif;
	font-weight: 300;
}
h4 {
	font-size: 1.5em;
	text-align: center;
	text-align: left;
	font-family: 'EB Garamond', serif;
	font-weight: 300;
	padding-top: 1em;
}

/* ids */
#div_background
{
	background-image: url('images/background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	display: block;
	position: absolute;
}
#header_background {
	position: fixed;
	top: 0px;
	background-color: #f5f5f5;
	width: 100%;
	line-height: 35px;
}
#header{
	position: fixed;
	top: 0px;
	line-height: 35px;
}

#footer
{
	position: fixed;
	bottom: 0;
	background-color: #f5f5f5;
	width: 100%;
	line-height: 30px;
	font-size: 0.8em;
	z-index: 6;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 40px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  /*background-color: white; */
	/* opacity: 0.5; */
  /* color: black; Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
	padding: 10px;
  padding-top: 0px; /* Some padding */

  border-radius: 10px; /* Rounded corners */
  font-size: 30px; /* Increase font size */
	z-index: 5;
}

a {
	color: #3b99b2;
}
a:hover {
	color: #3b99b2;
	opacity: 0.8;
	text-decoration: none;
}

.signalColor {
	background-color: #3b99b2;
	border: 1px solid #3b99b2;
	color: white;
}
.signalColor:hover {
	background-color: #3b99b2;
	border: 1px solid #3b99b2;
	opacity: 0.8;
	color: white;
}


/* classes */
.verybold{
	font-weight: 900;
}

.div_content {
	background-color: rgba(255, 255, 255, 0.5);
}

.linkButton {
     background: none;
     border: none;
     color: #3b99b2;
     cursor: pointer;
}