 /** GOTHAM **/
 @font-face {
  font-family: gotham-black;
  src: url('/assets/fonts/gotham-black.otf');
}
@font-face {
  font-family: gotham-bold;
  src: url('/assets/fonts/gotham-bold.otf');
}
@font-face {
  font-family: gotham-book;
  src: url('/assets/fonts/gotham-book.otf');
}
@font-face {
  font-family: gotham-ultra;
  src: url('/assets/fonts/gotham-ultra.otf');
}
@font-face {
  font-family: gotham-light;
  src: url('/assets/fonts/gotham-light.otf');
}

body {
  background-color: transparent;
  background-image: url('/assets/images/bg-home.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
  font-family: 'gotham-black';
}

section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
}

h2 {
  font-family: 'gotham-bold';
}

h3 {
  font-family: 'gotham-light';
}

img {
  width: 300px;
}

a {
  color: #ff3f6c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

::-moz-selection {
  color: #fff;
  background-color: #ff3f6c;
}

::selection {
  color: #fff;
  background-color: #ff3f6c;
}

@media(max-width: 1023px) {
  body {
    text-align: center;
  }
}