@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300&family=Open+Sans:wght@300;700&family=Roboto:ital,wght@0,300;0,700;1,300;1,700&family=Teko:wght@300&display=swap');

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on January 31, 2024 */

@font-face {
  font-family: 'red_circleregular';
  src: url('type/redcircl-webfont.woff2') format('woff2'),
       url('type/redcircl-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
	--etdark: #007c5d;
	--etlight: #80ea92;
}

html {
	padding: 0;
	margin: 0;
  display: table-cell;
  height: 100%;
  width: 100%;
}

body {
	background: #000 url("images/bg-nebula-green.jpg") no-repeat center center fixed;
  background-size: cover;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: Roboto, Arial, sans-serif;
	font-weight: 300;
	color: #555b5e;
	font-size: 20px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

article {
	/*background: #fafafa;*/
	min-height: 500px;
  width: 90%;
  margin: 30px auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

section.bio {
  box-sizing: border-box;
}

section.hero-image {
	position: relative;
  order: 1;
  height: 70%;
  min-height: 70vh;
}

section.name {
	text-align: center;
	padding: 20px 40px 20px;
  left: 130px;
  position: relative;
}

section.name h1 {
	text-align: center;
	text-transform: uppercase;
  font-family: 'red_circleregular';
	font-size: 30px;
	line-height: 30px;
	margin: 0;
  color: #fafafa;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
  letter-spacing: 1px;
}

section.name h1:after {
	display: block;
  content: "";
	margin: 10px auto 0;
  background: var(--etlight);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  display: block;
  width: 60%;
  height: 2px;
}

section.name h1 span {
	display: block;
	font-size: 10px;
	line-height: 10px;
  margin: 0 0 5px;
}

section.stats {
  padding: 35px 100px 35px 40px;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fafafa;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  left: 130px;
  position: relative;
}

div.stat-block {
	margin: 0 30px 0 0;
}

section.stats p {
	margin: 0 0 10px;
}

section.stats p:last-child {
	margin: 0;
}

section.stats strong {
	display: block;
	text-transform: uppercase;
	font-size: 10px;
	font-family: 'red_circleregular';
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
  color: var(--etdark)
}

section.hero-image::before {
	position: absolute;
	content: "";
	display: none;
	clip-path: polygon(100% 100%, 50% 0%, 0% 100%);
	background-color: #fafafa;
	width: 500px;
	height: 200px;
	top: 100px;
}

body.emerald-titan section.hero-image::before {
	background-color: var(--etdark);
}

section.hero-image img {
	margin: 0 auto;
	display: block;
	position: relative;
	z-index: 1;
  height: 100%;
}

/* section.hero-image img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
} */