@import url("animations.css");
@import url("menu.css");
@import url("copyright.css");

/* General stuff */
body {
  background-color: white;
  background-image: url('../images/tso/background.svg');
  background-repeat: no-repeat;
  background-position: 50% 20px;
  text-align: center;
  font-family: 'Assistant', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: black;
}

/* On screens narrower than around 375 pixels, the background can interfere */
@media screen and (max-width: 375px) {
  body {
    background-size: 800px; /* width */
  }
}

/* The heading */
h1 {
  margin-top: 40px;
  animation-name: fade-in;
  animation-duration: 2s;
}
h1 img {
  max-width: 90%;       /* so that on phone screens it doesn't go quite to the edges */
}

/* The subtitle, 'A tribute to Sting & The Police' */
div.subtitle {
  font-size: 22px;
  font-weight: 600;
  margin: 30px auto 10px;
  animation-name: fade-in;
  animation-duration: 2s;
}

/* the bullets separating the picture and the blurb below */
div.separator {
  font-size: 22px;
  font-weight: 600;
  margin: 20px auto;
  animation-name: fade-in;
  animation-duration: 2s;
}

/* The blurb */
p {
  text-align: center;
  width: 650px;
  max-width: 95%;   /* so that on phone screens it doesn't go quite to the edges */
  padding: 10px;
  margin: 20px auto;
  animation-name: fade-in;
  animation-duration: 4s;
}

/* The stage shot */
img.live {
  margin: 20px auto 20px;
  border: 1px solid rgb(202, 126, 0);
  max-width: 95%;   /* so that on phone screens it doesn't go quite to the edges */
  animation-name: fade-in;
  animation-duration: 4s;
}

/* The bookings and tour dates links */
div.links {
  margin: 30px 0;
}
div.links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  background-color: white;
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  padding: 5px 15px;
  margin: 0 35px;
  letter-spacing: 6px;
  line-height: 4;       /* so that on smaller screens they don't overlap */
  white-space: nowrap;
  transition: all 0.6s;
}
div.links a:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-color: rgb(200, 200, 200);
  border-radius: 10px;
}

/* The quotes */
div.quotes {
  width: 650px;
  max-width: 95%;
  margin: 30px auto 40px;
}
div.quotes-title {
  font-family: 'IM Fell English', serif;
  font-size: 90px;
  margin: 0 auto -10px;
  color: rgba(0, 0, 0, 0.8);
}
div.quotes-title span {
  color: rgba(0, 0, 0, 0.3);
  font-size: 70px;
  padding-bottom: 50px;
}
div.quote {
  margin: 0 auto 25px;
  font-family: 'IM Fell English', serif;
  font-size: 26px;
  color: rgba(0, 0, 0, 0.6);
}
div.quote span {
  display: block;   /* force it onto a new line */
  font-size: 16px;
  color: rgba(0, 0, 0, 0.3);
}

/* On screens narrower than about 500 pixels, the quote text starts to look big */
@media screen and (max-width: 500px) {
  div.quote {
    font-size: 22px;
  }
}

/* The video */
iframe {
  margin: 25px auto 50px;
  max-width: 95%;   /* so that on phone screens it doesn't go quite to the edges */
  border: none;     /* to avoid the naff default border */
  animation-name: fade-in;
  animation-duration: 2s;
}

/* Social media */
div.social a img {
  margin: 5px;
  height: 50px;
}
