/*@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap");*/
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');

:root {
  --dark: #2f2f2f;
  --light: #e3e3e3;
	--gold: #c8ab37;
	--green: #008800;
	--red: #cc3300;
}

* {
  box-sizing: border-box;
	margin: 0;
  padding: 0;
}

html {
	font-size: 62.5%;
}

body  {
  /*font-family: "Source Code Pro", monospace, sans-serif;*/
	font-family: "Courier Prime", "Courier New", Courier, sans-serif;
	font-size: 1.25rem;
  font-weight: normal;
	line-height: 1.6;
	color: var(--light);
	background-color: var(--dark);
}

.gold { color: var(--gold); }
.green { color: var(--green) !important; }
.red { color: var(--red) !important; }

.background-container {
  background-image: url('../images/alexander-iii-of-scotland-rescued-from-the-fury-of-a-stag.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

h1, .h1 {
  font-size: 2rem;
	font-weight: normal;
}

h2, .h2 {
  font-size: 1.5rem;
}

p {
  margin: 1.25rem 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .5s;
}

a:visited,
a:hover,
a:focus {
  opacity: .5;
}

.small {
	font-size: 1rem;
	font-style: italic;
}

.text-right {
	text-align: right;
}

.mb {
  margin-bottom: 3rem;
}

.mtb {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

tr.bb td,
tr.bb th {
  border-bottom: .1rem solid var(--light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fadein {
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
     -moz-animation: fadein 2s; /* Firefox < 16 */
      -ms-animation: fadein 2s; /* Internet Explorer */
       -o-animation: fadein 2s; /* Opera < 12.1 */
          animation: fadein 2s;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
