@import url("https://fonts.googleapis.com/css?family=Inconsolata");

@font-face {font-family: "Streetbrush";
  src: url("/fonts/Streetbrush/streetbrush.eot");
  src: url("/fonts/Streetbrush/streetbrush.eot?#iefix") format("embedded-opentype"),
  url("/fonts/Streetbrush/streetbrush.woff2") format("woff2"),
  url("/fonts/Streetbrush/streetbrush.woff") format("woff"),
  url("/fonts/Streetbrush/streetbrush.ttf") format("truetype"),
  url("/fonts/Streetbrush/streetbrush.svg#StreetbrushW01-Regular") format("svg");
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Inconsolata", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: white;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

p {
  line-height: 1em;
  text-align: center;
}

a,
a:visited,
a:hover {
  color: white;
  text-decoration: none;
}

a > * {
  transition: color 150ms ease;
}

a:hover > * {
  color: #ddd;
}

.script {
  font-family: "Streetbrush";
}

.center {
  text-align: center;
}

#background {
  background: transparent url('/img/splash.jpg') no-repeat fixed center center / cover;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -10;
  transition: opacity 250ms ease;
  opacity: 0;
}

/* PRIMARY CONTENT */

#see-you-soon {
  font-size: 250px;
  letter-spacing: 20px;
}

#join-fan-club {
  font-size: 60px;
  letter-spacing: 5px;
  margin: 70px 0 15px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}

ul li { 
  display: inline-block;
}

#links {
  bottom: 60px;
  font-size: 17px;
}

#links li {
  margin-right: 24px;
}

#links li::last-of-type {
  margin-right: 0;
}

#links li a {
  text-decoration: underline;
  display: inline-block;
}

#socials {
  bottom: 15px;
  color: white;
  font-size: 18px;
}

#socials li {
  margin-right: 15px;
}

#socials li:last-of-type {
  margin: 0;
}

/* SECONDARY CONTENT */
#secondary-content {
  display: none;
  width: 50%;
  margin: 0 auto;
}

button {
  display: inline-block;
  margin: 5px auto 0;
  height: 38px;
  padding: 0 30px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 150ms ease;
  opacity: 0.8;
}

button:hover {
  opacity: 1;
}

input {
  width: 300px;
  margin: 0 auto;
  padding: 10px 30px;
  color: black;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
  box-sizing: border-box;
  transition: opacity 150ms ease;
}

.error {
  margin-top: 10px;
  font-size: 14px;
  font-style: italic;
}

select {
  height: 30px;
}

.mlist-field {
  margin-bottom: 15px;
}

#id_country {
  width: 300px;
}

.terms-open-btn {
  border: none;
  outline: none;
}

.terms-content {
  font-style: italic;
}

#thankyou-block .thankyou-message p {
  font-size: 72px;
  margin-bottom: 25px;
}

@media (max-width: 1300px) {
  #see-you-soon {
    font-size: 150px;
  }

  #join-fan-club {
    font-size: 40px;
  }

  #underline {
    width: 25%;
  }
}

@media (max-width: 850px) {
  #see-you-soon {
    font-size: 60px;
    letter-spacing: 5px;
  }

  #join-fan-club {
    font-size: 30px;
  }

  #underline {
    width: 50%;
  }

  #links {
    font-size: 16px;
    text-align: center;
  }

  #links li {
    display: block;
    width: 100%;
    margin-top: 5px;
  }
}

/* Mobile landscape */
@media screen and (orientation: landscape) and (max-height: 450px) {

  #join-fan-club {
    margin: 20px 0 0px;
  }

  #underline {
    width: 25%;
    margin-bottom: 100px;
  }

  #links li {
    display: inline-block;
  }
}

@media screen and (orientation: portrait) and (max-width: 400px) {
  #secondary-content {
    width: 75%;
  }

  input {
    width: 100%;
    font-size: 16px;
  }
  
  #join-fan-club {
    margin: 35px 0 0;
  }

  #links li {
    display: block;
    width: 100%;
    margin-top: 5px;
  }
}
