@font-face {
  font-family: "PT Sans";
  src: url(../assets/fonts/PTSans-Regular.ttf);
}

@font-face {
  font-family: "PT Sans Bold";
  src: url(../assets/fonts/PTSans-Bold.ttf);
}

@font-face {
  font-family: "Delius Unicase Bold";
  src: url(../assets/fonts/DeliusUnicase-Bold.ttf);
}

/* BASE PAGE STYLES */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  background: transparent;
  font-family: "PT Sans", sans-serif;
  height: 100%;
  letter-spacing: 1px;
}

body {
  background: hsl(0, 0%, 95%);
  color: hsl(0, 0%, 0%);
  min-height: 100%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  position: relative;
}

header {
  background: hsla(0, 0%, 0%, 65%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main {
  padding-bottom: 6rem;
}

footer {
  bottom: 0;
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 14px 0;
  position: absolute;
  right: 20px;
  text-align: right;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Sans Bold", sans-serif;
  font-weight: 700;
  margin-top: 0;
}

h1 {
  color: hsl(0, 0%, 100%);
  font-family: "Delius Unicase Bold", sans-serif;
  font-size: 3.8rem;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  color: #696949;
  font-size: 1.2rem;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  color: #696949;
}

a:hover {
  text-decoration: none;
}

a:focus,
button:focus,
details:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
  -webkit-box-shadow: 0 0 3px 3px hsla(203, 95%, 62%, 0.8);
  box-shadow: 0 0 3px 3px hsla(203, 95%, 62%, 0.8);
  outline: none;
}

button,
button:hover,
button:active,
button:focus,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.bold {
  font-family: "PT Sans Bold", sans-serif;
  font-weight: 700;
}

/* MEDIA QUERIES */

@media all and (min-width: 1100px) {

  header {
    margin-top: 30px;
  }
}