@charset "UTF-8";
:root {
	--maroon: 		#3d0312;
	--red: 			#a40917;
	--gold: 		#bb872d;
	--vegasgold: 	#d6be5c;
	--dark: 		#070707;
	--light: 		#fbf8ee;
	--translucent: 	rgba(61, 3, 18,0.85);
	--shadow: 1px 6px 8px 2px rgba(7, 7, 7, .6);
	--radius: 0.25rem;
    --base-font-size: 16px;
    --font-family-text: -apple-system, 'Montserrat', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --font-family-header: 'Cormorant Garamond', 'Times New Roman', Times, serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  }
html, body {
	width:100vw;
	height:100vh;
	margin:0;
}
body {
	background: var(--red) url(../images/bkg-tile-sm.png);
}
body, td, p, li, label {
	font-family: var(--font-family-text);
	font-size: var(--base-font-size);
	font-weight: 400;
	color: var(--light);
	line-height: 1.75em;
}
a {
	text-decoration: underline;
	color: var(--gold);
}
a:hover {
	text-decoration: none;
	color: var(--vegasgold);
}
strong {
	font-weight: 600;
	letter-spacing: 0.25px;
}
h1, h2, h3, h4 {
    display: block;
    font-family: var(--font-family-header);
    font-weight: 500;
}
h1 {
	font-size:4em;
}
.wrapper {
	position: relative;
	overflow: hidden;
}
.flex-center {
	/* Centering the container's content vertically and horizontally*/
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center; 
}
header {
	display:none;
	position: fixed;
	width: 100%;
	height: 70px;
	padding: 10px 60px;
	background-color: var(--maroon);
	border-bottom: 1px solid  var(--maroon);
	box-shadow: var(--shadow);
}
.logo {
	display:inline-block;
	background-color: var(--vegasgold);
	padding: 0;
	border: 6px solid var(--gold);
	border-radius: 50%;
}
.dude {
	display:inline-block;
	background-color: transparent;
	margin-top: 8px;
	padding: 0;
	border: none;
	border-radius: 0;
	width: 300px !important;
}
.dude img {
	border: 6px solid var(--gold);
	border-radius: 50%;
}
.bump {
	margin-top: -80px;
}
section {
    padding: 60px 0;
}
article {
	margin:2% 1%;
	text-align: justify;
}
.pad-top {
	padding-top: 40px;
}
.pad-bottom {
	padding-top: 40px;
}
.card {
	background: var(--translucent);
	box-shadow: var(--shadow);
	border: 1px solid var(--dark);
	border-radius: 2em;
	color: var(--light);
	padding: 0;
}
.card-body {
	padding: 2.6rem 40px 1.4rem 40px;
}

/* More info */
.copyright {
	position: sticky;
	bottom: 0;
	right: 0;
	text-align: right;
	padding-top: 20px;
	padding-right:60px;
	padding-bottom: 20px;
	margin-top:5%;
	color: var(--light);
	letter-spacing: 2px;
}
.hidden {
	display: none;
}
/* large (lg) monitors */
@media only screen and (max-width: 1200px) {

  }
  /* medium (md) laptops */
  @media only screen and (max-width: 992px) {
	h1 {
		font-size:3em;
	}
  }
  /* small (sm) tablets */
  @media only screen and (max-width: 768px) {
	h1 {
		font-size:2.6em;
	}
	h2 {
		font-size: 1.4em;
	}
  }
  /* extra small (xs) mobile phones */
  @media only screen and (max-width: 576px) {
	h1 {
		font-size:2em;
	}
	h2 {
		font-size: 1.4em;
	}
	.card {
		background: var(--maroon);
	}
  }