@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {
  --dark: #000000;
  --light: #ffffff;
	--gold: #c8ab37;
}

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

html {
	font-size: 62.5%;
}

body  {
  font-family: "Lato", sans-serif;
	font-size: 1.4rem;
  font-weight: 300;
	line-height: 1.6;
	color: var(--light);
	background-color: var(--dark);
	background-image: url("../images/background.jpg");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

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

#container {
  margin: 0 auto;
	max-width: 600px;
}

h1, .h1 {
  font-size: 3rem;
	font-family: "Julius Sans One", "Source Code Pro", sans-serif;
}

h2, .h2 {
  font-size: 1.8rem;
	font-family: "Lato", sans-serif;
}

p {
  margin: 1rem 0;
}

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

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

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

.gold {
	color: var(--gold);
}

.mb {
  margin-bottom: 3rem;
}

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

.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; }
}
