body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: 'Montserrat-Alt1', sans-serif;
	font-weight: 300;
	background-color: #231f20;
}
.background {
  /* remove background comments if needed */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;

  display: flex;
  flex-direction: column;

  /* center items both vertically and horizontally */
  justify-content: center;
  align-items: center;

  /* optional spacing between logo and tagline */
  gap: 1rem;
}

.headline,
.tagline {
  /* reset any extra vertical margins/padding */
  margin: 0;
  padding: 0;
  text-align: center;
  color: white;
}

/* specific sizes */
.headline {
  font-size: 200px;
}
.tagline {
  font-size: 20px;
}

/* responsive tweaks */
@media (max-width: 1200px) {
  .headline { font-size: 100px; }
  .tagline  { font-size: 16px; }
}
@media (max-width: 600px) {
  .headline { font-size: 75px; }
  .tagline  { font-size: 14px; }
}
