body {
	font-family: 'Roboto Flex', sans-serif;
	background-color:white; 
	color:#111111; 
	margin: 100px;
}

h1 {
	font-size: 100px;
	font-weight: 100;
	line-height: 90px;	
	color:#d01c1f; 
}

p {
	font-size: 18px;
	font-weight: 100; 
	line-height: 25px;
}

a {
	color:#d01c1f; 	
}

.pullout {
	font-size: 20px;
	font-weight: 400;
	line-height: 25px;
}

.legal {
	font-size: 15px; 
	padding-top: 100px
}

.container {
  display: flex;
  gap: 2%;
}

.column {
  flex: 1;
  padding: 20px;
}

@media (max-width: 768px) {
  .container {
	flex-direction: column;
	gap: 20px; /* optional: smaller spacing for mobile */
  }
}