<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
	width: 100%;
	background: #FFFFFF;
}

p, h1, h2, a {
	font-family: Poppins, sans-serif; 
	color: #3F738D;
	text-decoration: none;
	margin: 0;
	

}


h1{
	font-size: 2rem;
	font-weight: 200;
}

h2{
	font-size: 2rem;
	font-weight: 100;
}
p{
	font-size: 0.8rem;
	font-weight: 100;
}

a{
	font-weight: 200;
}

.social-icons {
	padding-right: 0.5rem;
}


.container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
	  grid-auto-rows: auto;
	  height: 100vh;
	  justify-items: center;
	  margin: 0;
 }

 header{
	grid-column: 2 / span 4 ;
	grid-row: 1;
	align-self: center;
	margin: 5rem 0 0 0;
 }

 header img{
	 width: 20rem;
 }

 /* .logo{
	width: 20rem;
 } */

 main{
	grid-column: 2 / span 4 ;
    grid-row: 2;
	align-self: center;
	text-align: center;
 }

 footer{
	grid-column: 2 / span 4 ;
    grid-row: 3;
	align-self: center;
	text-align: center;
	margin: 5rem 0 5rem 0;
 }



 @media only screen and (max-width: 600px) {
	h1, h2{
		font-size: 1rem;
		
	}
	

	p{
		font-size: 0.6rem;
		
	}
}</pre></body></html>