@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:300,400,600');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Barlow Condensed', sans-serif;  
  color: white;

  display: flex;
  flex-direction: row;  
  justify-content: center;

  background: url('../img/title.jpg') no-repeat center top;
  background-size: 120% auto; 
  background-color: #333333;
  
  font-size: 1.5em;
  margin: 0;
  padding: 0;
}

#content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: 40% 1.5em 1.5em 1.5em;
  max-width: 1000px;
}

#content > .header {
  background: url('../img/logo.svg') no-repeat top center;
  background-size: contain;
  width: 100%;
  height: 0;
  padding-top: 47.45%;
  margin-bottom: 1em;
}

#content > *:not(.header) {
  width: 100%;
  text-align: center;
  margin-bottom: 3em;
}

#content > *:last-child {
  margin: 0;
}

.quote {
  text-transform: uppercase;
  margin: 2em 0;
}

hr {
  border: 1px solid rgba(255, 255, 255, 0.2);  
  margin: 2em 0;
}

h2 {
  font-size: 100%;
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1em 0;
}

a {
  display: inline-block;
  text-decoration: none;
  padding: .5em .7em .55em .7em;
  color: white;
  text-transform: uppercase;
  border-radius: .5em;
  margin: 0 .2em .6em .2em;
  border: .05em solid rgba(255, 255, 255, 0.2);
  transition: .2s ease;
}

a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}

a:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  transform: scale(0.95);
}

.service {
  background-repeat: no-repeat;
  background-position: center left .7em;
  background-size: 1em;
  padding-left: 2.3em;
}

.spotify {
  background-image: url('../img/spotify.svg');
}

.apple {
  background-image: url('../img/apple.svg');
}

.tidal {
  background-image: url('../img/tidal.svg');
}

.amazon {
  background-image: url('../img/amazon.svg');
}

.google {
  background-image: url('../img/google.svg');
}

.instagram {
  background-image: url('../img/instagram.svg');
}

.facebook {
  background-image: url('../img/facebook.svg');
}

.youtube {
  background-image: url('../img/youtube.svg');
}

@media screen and (max-width: 320px) {
  .service {
    display: block;
    margin-left: 0;
    margin-right: 0;
    padding: 2em 0 .5em 0 !important;
    background-position: center top .5em !important;
  }
}

@media screen and (min-width: 600px) {
  .quote {
    width: 65% !important;
  }
}

@media screen and (max-width: 800px) {
  body {
    font-size: 1.2em;
  }
}

@media screen and (min-width: 1200px) {
  body {
    font-size: 1.7em;
    background-image: url('../img/title.hires.jpg') !important;
  }
}

input, textarea, button {
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  border: none;
  border-radius: .5em;
  padding: .5em;
}

input {
  margin-bottom: .5em;
}

textarea {
  height: 14em;
  transition: all .25s;
}

textarea:disabled, textarea[disabled] {
  opacity: 0.1;
}

button {
  margin-top: .3em;
  text-transform: uppercase;
  background-color: #BB6917;
  color: white;
  transition: all .25s;
  cursor: pointer;
}

button:disabled, button[disabled] {
  cursor: default;
  background-color: white;
  color: gray;
  opacity: 0.1;
}

button:hover:not(:disabled) {
  background-color: #DB7B1B;
}

button:active:not(:disabled) {
  background-color: #8C4F11;
}

.success {
  width: 100%;
  border-radius: .5em;
  padding: .5em;
  text-transform: uppercase;
  background-color: #009B39;
}