.animated-background {
    background: linear-gradient(306deg, #ede3b3, #fb9ff9, #ede3b3, #a6f0f6);
    background-size: 800% 800%;
    -webkit-animation: BGAnimation 59s ease infinite;
    -moz-animation: BGAnimation 59s ease infinite;
    -o-animation: BGAnimation 59s ease infinite;
    animation: BGAnimation 59s ease infinite;
    height: 100%;
}
 
@-webkit-keyframes BGAnimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes BGAnimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes BGAnimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes BGAnimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

@font-face {
 font-family: Quicksand;
 src: url(fonts/Quicksand/Quicksand-VariableFont_wght.ttf);
}

html {
	margin: 0;
	padding: 0;
	font-family: Quicksand, sans-serif;
}
header {
	width: 100%;
}
nav ul {
  list-style-type: none;
  }
nav li {
	float: left;
	padding: 5px;
}
/* Clear floats after the columns */
nav:after {
  content: "";
  display: table;
  clear: both;
}
article {
	float: left;
	width: 60%;
	padding: 10px;
	padding-left: 25px;
}
aside {
	float: right;
	background-color: deepskyblue;
	border-radius: 10px;
	padding: 10px;
	margin-top: 25px;
	width:25%;
}
footer {
	position: static;
	height: auto;
	padding: 20px;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
a:link {
	text-decoration: underline;
	color: #333333;
}
a:visited {
	text-decoration: underline;
	color: #333333;
}
img {
	margin: 5px;
}	
h1 {
	text-align: center;
	padding-top: 100px;
	font-size: 40px;
	font-weight: 300;
	color: #333333;
	padding-bottom: 50px;
}
h2 {
	font-size: 25px;
	font-weight: 400;
	color: #333333;
	padding-bottom: 0px;
	margin-bottom: 0;
}

.icon {
	margin: 5px;
}
.primary_links {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	background: linear-gradient(90deg, rgba(237,227,179,.5) 0%, rgba(251,159,249,0.5) 50%, rgba(166,240,246,0.5) 100%);
	opacity: 100%;
	border-radius: 25px;
	border: 1px solid rgba(3,3,3,0.5);
	width: 90%;
	max-width: 550px;
	min-height: 150px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 75px;
	padding: 30px 20px;
	box-sizing: border-box;
}
.secondary_links {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #333333;
	border-radius: 15px;
	border: 1px solid rgba(3,3,3,0.5);
	background: #e5d5b2;
	opacity: 100%;
	padding: 25px;
	width: 90%;
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
	margin-bottom: 25px;
	box-sizing: border-box;
}
.footer_links {
	color: #333333;
	width: 90%;
	max-width: 800px;
	left: 0;
	right: 0;
	padding-left: 20px;
	box-sizing: border-box;
}
.footer_columns {
	display: flex;
	justify-content: center;
}
.footCol1 {
	display: inline-block;
	width: auto;
	padding-right: 40px;
}
.footCol2 {
	display: inline-block;
	width: auto;
}
.strike {
	text-decoration: line-through;
	color: #818181;
}
.copyright {
	position: static;
	width: auto;
	font-size: 8pt;
	color: #636161;
	text-align: center;
	padding: 10px;
}
.vertical_divider {
	border: none;
	border-left: 1px solid rgba(3,3,3,0.5);
	align-self: stretch;
}
.vertical_divider_small {
	border: none;
	border-left: 1px solid rgba(3,3,3,0.5);
	align-self: stretch;
}
.disclaimer {
	color: #757373;
	}

@media (max-width: 600px) {
	h1 {
		font-size: 26px;
		padding-top: 40px;
		padding-bottom: 20px;
	}
	.primary_links,
	.secondary_links {
		flex-direction: column;
	}
	.vertical_divider,
	.vertical_divider_small {
		border-left: none;
		border-top: 1px solid rgba(3,3,3,0.5);
		align-self: stretch;
		width: auto;
	}
	.footer_columns {
		flex-direction: column;
		align-items: center;
	}
	.footCol1,
	.footCol2 {
		display: block;
		width: 100%;
		padding-right: 0;
		text-align: center;
	}
}