/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  background-image: url("gabeyboy.jpg");
  color: black;
  font-family: 'courier-prime';
}

#bganimation {
  background: url("theguypattern.png") top center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  animation: bg 100s linear infinite;
    animation-name: bg;
    animation-duration: 100s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-timeline: infinite;
}

#title {
  position: absolute;
	justify-content: center;
	overflow-wrap: break-word;
	align-items: baseline;
	padding: 15px;
	display: flex;
	border: 4px solid;
	border-color: rgb(255, 255, 255);
	background: rgb(194, 175, 179);
	font-family: 'courier-prime';
	font-size: 10pt;
	margin-top: 10px;
	margin-left: 500px;
}

#secondary {
  position: absolute;
	justify-content: center;
	overflow-wrap: break-word;
	padding: 15px;
	display: inline;
	border: 4px solid;
	border-color: rgb(255, 255, 255);
	background: rgb(194, 175, 179);
	font-family: 'courier-prime';
	font-size: 10pt;
	margin-top: 200px;
	margin-left: 200px;
	inline-size: 900px;
}

@keyframes bg {
  from {background-position: -2000px 0;
  }
  to {
    background-position: 0 -2000px;
  }
}