*{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
}



body{
  font-family: Arial, sans-serif;
  color:#ffffff; /* #25873A */
  background-color: #bedbf1;
  text-align: center;
}

h1{
	margin-top:5vh;
}

#logo{
	height:100%;
	max-height:10vh;
	display:block;
}

main{       
  display: flex;
  align-items: center;
  justify-content: center;
	flex-direction: column;
  background-color: #bedbf1;
  width:100%;
	flex: 1;

}

#siteContent{
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.social-links{
  margin: 2vh;  
}
.social-links a{
  font-size: 2vh;
  margin: 2vh;
  color: white;
  text-decoration:none;
}
.social-links img {
 height: 4vh;
}
.social-links img:hover {
  color: #0077b5;
  transform: scale(1.1); 
}
footer{
  margin: 4vh;
  background-color: #bedbf1;
  font-size: 2vh;
}