@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: "Switzer-Regular";
  src: url('/fonts/Switzer-Regular.woff2') format('woff2'),
       url('/fonts/Switzer-Regular.woff') format('woff'),
       url('/fonts/Switzer-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}


body {
	font-family: "Switzer-Regular";
	font-size: 20px;
	color: #000000;
	}	

@media only screen and (max-width: 1199px) {
  body {
    font-size: 1.8em;
  }
}

@media only screen and (max-width: 809px) {
  body {
    font-size: 2em;
  }
}


a {
	color: black;
	text-decoration: underline
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 20px;
	width: 100%;
	height: 100vh;
	}

.content {
	display: flex;
	flex-direction: column;
	align-items:flex-start;
	grid-row-gap: 10px;
	width: 70%;
	}
