*,
*:before,
*:after {
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* USER STYLES */

body {
  height: 100vh;
  width: 100vw;
  background-color: #000;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Playfair Display', serif;
}

.background-image {
  width: 100%;
  height: 100%;
  top: 30%;
  transform: scale(1, 1);
  position: fixed;
  background-image: url('./img/musicalchairsposter1b.jpg');
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

.text {
  position: fixed;
  padding: 1rem;
  height: 80%;
  width: 100%;
  overflow: auto;
  border: 1rem solid #fff;
  background-color: rgba(255, 255, 255, .8);
  color: #000;
  z-index: 100;
  text-align: center;
}

.left {
  text-align: left;
}

strong {
  font-weight: bold;
}

p {
  margin-bottom: 1rem;
}

a {
  color: red;
}

h2 {
  font-size: 1.5em;
}

.name {
  font-size: 1.2em;
}

@media screen and (min-width: 350px) {
  .background-image {
    top: 20%;
  }
}

@media screen and (min-width: 400px) {
  .background-image {
    top: 10%;
  }
}

@media screen and (min-width: 500px) {
  .background-image {
    top: 0;
  }
}

@media screen and (min-width: 650px) {
  .background-image {
    width: 50%;
    height: 75%;
    transform: scale(2, 2);
    left: 25%;
  }

  .text {
    height: 70%;
    width: 70%;
    right: 15%;
    top: 10%;
  }
}