
/* typography */

/* oswald-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/oswald-v49-latin/oswald-v49-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* source-sans-3-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/source-sans-3-v9-latin/source-sans-3-v9-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'Source Sans 3';
  color: white;
  background-color: transparent;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald';
}

/* defaults */

html,
body {
  margin: 0;
  padding: 0;
  height:  100%;
  background-image: linear-gradient(45deg, #000000, #383838);
}

/* text + links*/

p {
  color: #666;
}

p a {
  text-decoration: none;
  color:#b8243a;
}

/* layout */

#logo {
  margin: 1em auto;
  padding: 0;
  max-width: 100%;
  width: 666px;
  height: auto;
}

/* wrapper */

.wrapper {
  margin: 0;
  padding: 0;
  height:  100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(../img/bg-site-header-min.jpg)
    no-repeat center center/cover;
}

/* content */

.content h1 {
  margin: 0;
  font-size: 5em;
}

.content h2 {
  margin-top: 0;
  font-size: 2em;
}

/* countdown */

.countdown {
  margin: auto;
  display: table;
  font-size: 28px;
  font-weight: 500;
}

.countdown > div {
  float: left;
  min-width: 80px;
}
.countdown span {
  position: relative;
  display: block;
  font-size: 16px;
  text-align: center;
}
.countdown span:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: 20px;
  height: 1px;
  background: #fff;
}

/* footer */

footer {
  margin: 0;
  padding:1rem;
  text-align: center;
  
}

footer ul {
  margin: 1rem auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer li {
  margin: 0 1em;
  padding: 0;
}

footer a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
