body {
	font-family: Danmark;
	font-size: 16px;
	line-height: 1.5;
	
	background-color: #ffffff;
	color: #ff1e14;
	max-width: 100vw;
}

section {
  height: 100vh;
  width: 100vw;
  padding: 2em;
}

a {
  text-decoration: none !important;
	color: #ff1e14;
}

.underline {
	border-bottom: solid 1px;
}

.bottom {
  gap: 1em;
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.row {
	flex-direction: row; 
}

.distribute {
  justify-content: space-between;
}

.two-thirds {
  width: 66.666%;  
}

.display {
  font-size: 2.5em;
}

.display-l {
  font-size: 3em;
}

.display-xl {
  font-size: 4em;
}

.logo {
	width: 180px;
}

.plus {
  width: 38px;
	padding-bottom: 10px;
}

p:nth-of-type(n+2) {
	margin-top: 0.666em;
}


@media (max-width: 1024px) {
  
	.two-thirds {
    width: 75%;
  }
  
	.display {
   font-size: 2em;
	}
  
}


@media (max-width: 768px) {
  
  section {
    padding: 1em;
    height: 87.5vh;
  }
  
  .top {
    flex-direction: column;
  }
  
  .two-thirds {
    width: 90%;
  }
  
}  


@media (max-width: 414px) {
    
  .two-thirds {
    width: 100%;
  }
  
/*   .display {
  	font-size: 1.5em;
	}

	.display-xl {
  	font-size: 2em;
	} */
  
}




