@font-face {
	font-family: "Lirrier";
	src: url("./fonts/Lirrier.ttf");
}
@font-face {
	font-family: "Bronco";
	src: url("./fonts/BroncoPersonalUse.ttf");
}
body {
	margin: 0;	
	background-color: #8a8a8a;
}

.presentation {
	color: #4b1e21;
	font-family: "Bronco";

}

h1.title{
	color: #4b1e21;
	font-family: "Bronco";
	font-size: 60px;
	text-align: center;
	word-wrap: break-word;
	overflow: hidden;
	margin: 0;
	letter-spacing: 6px;
}
h1{
	color: #af6a3f;
	font-family: "Bronco";
	text-align: center;
	font-size: 40px;
	margin: 0;
	letter-spacing: 6px;
}

.container .banner{
	margin: 0;
	width: 100%;
	height: auto;
	display: border;
}

.content{
	background-image: url("./pixel-art/fence-upclose.png");
	inset: 0;
	background-repeat: repeat-x;
	pointer-events:none;
	z-index:10;
}

hr.thick {
	height: 10px;
	margin: 0;
	border: none;
	background-color: red;
}

footer{
	background-image: url("./pixel-art/wood-pattern-aged.png");
}

.wood-separator {
  height: 50px;
  padding: 0 24px; /* reserve space for caps = their width */
  background-image:
    url('./pixel-art/wood-pattern-aged-512x128-left-end.png'),
    url('./pixel-art/wood-pattern-aged-512x128-right-end.png'),
    url('./pixel-art/wood-pattern-aged-512x128.png');
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-position: left center, right center, 20px center;
  background-size: auto 50px, auto 50px, auto 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  background-color: #4b1e21;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50vh; /* or whatever height you need */
}


p {
	font-family: "Lirrier";
	font-size: 18px;
	color: #ffeeaf;
}
.ls {
  flex: 1;
  border-left: 8px solid #60413a;
  display: flex;
  flex-direction: column;
  align-items: space-around;
  /* style this however you want — it's isolated */
}


.rs {
  flex: 1;
  border-right: 8px solid #60413a;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Horizontal */
  align-items: center;     /* Vertical */
}

.divider {
  width: 8px;
  background-color: #60413a; /* divider color */
  flex-shrink: 0; /* prevents it from being squeezed by flex */
}

.terminal {
	width: 80%;
	height: 60%;
	border: 1px solid #ffeeaf;
	border-radius: 12px;
	padding: 10px;
	margin-bottom: 60px;
}
.description{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin-top: 20px;
	margin-left: 20px;
	margin-right: 20px;
}
.remaining-description{
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
}
img.creator{
	width: 200px;
	height: 200px;
	margin-left: 7px;
}

@media (max-width: 850px){
	.main{
		flex-direction: column;
		min-height: 100vh;
	}
	.divider {
		width: 100%;
		height: 8px;
		flex-shrink: 0;
	}
	h1.title{
		font-size: 6vw;
	}
	h1{
		font-size: 8vw;
	}
	p {
		font-size: 4vw;
	}
	.ls {
		border-left: none;
	}
	.rs {
		border-right: none;
	}
	img.creator {
		width: 100px;
		height: auto;
		object-fit: cover;
		margin-left: 2px;
	}
}
