@font-face {
  font-family: "Founders Grotesk";
  src: url(founders-grotesk-web-regular.woff);
}

@font-face {
  font-family: "Founders Grotesk-bold";
  src: url(founders-grotesk-web-bold.woff);
}

@font-face {
  font-family: "Founders Grotesk-semibold";
  src: url(founders-grotesk-web-semibold.woff);
}


body {
	font-family: Founders Grotesk;
	font-size: 24px;
	
	background-color: #DFE0DA;
	color: #D80032;
	margin: 60px;
	
}

h2 {
  font-family: Founders Grotesk-semibold;
	font-size: 32px;
	font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 12px;
}

section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

section div {
  margin: 32px 32px 80px 32px;
  max-width: 480px;
/*   height: auto; */
}

section img {
  margin-bottom: 12px;
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

div.filled, div.outline {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("mollyscolour.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 0;
  
  pointer-events: none;
}

div.outline {
  background-image: url("mollysoutline.svg");
  z-index: 2; 
}

header { 
  position: fixed;
  padding: 20px;
  width: 100%;
  top: 0;
  right: 0;
  
  display: flex;
  justify-content: flex-end;
}

nav a {
  padding: 4px;
  border: 3px solid #D80032;
  border-radius: 20px;
  text-transform: uppercase;
  font-family: Founders Grotesk-bold;
  text-decoration: none;
  color: #D80032;
}

nav a:hover {
  color: darkseagreen
}





footer { 
  position: fixed;
  padding: 20px;
  width: 100%;
  bottom: 0;
  left: 0;
}

footer a img {
  width: 24px;
}

@media (max-width:800px) {
  header {
    width: 100%;
    justify-content: center;
  }
  
  nav span {
   font-size: 40px;
  }
  
}

