body {
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center top;
  padding: 10%;
  font-size: 16px;
  font-family: Roboto,arial,sans-serif;
}

.container {
  width: 800px;
  max-width: 100%;
  background-color: rgba(255,255,255,0.8);
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content {
  padding: 2%;
}

@media screen and (max-width: 1000px) {
  body {
    font-size: 1.6vw;
  }
  .container {
    border-radius: 2vw;
  }
}

h1 {
  font-family: 'Indie Flower', cursive;
  font-weight: normal;
  font-size: 400%;
  text-shadow: 5px 5px 1px rgba(0,0,0,0.2);
  text-align: center;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 5%;
}

h2 {
  font-size: 150%;
  text-align: center;
  padding: 0px;
  margin-top: 5%;
  margin-bottom: 1%;
}

.artist_photo {
  margin-right: auto;
  margin-left: auto;
  width: 25%;
  padding-bottom: 25%;
  border-radius: 50%;
  background-image: url(../images/photo.jpg);
  background-size: cover;
}
.artist_words {
  font-size: 250%;
  font-family: 'Square Peg',arial,sans-serif;
  text-align: center;
}

.discography_item {
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 2%;
}
.discography_item_image {
  width: 21.704%;
  border-radius: 5px;
}
.discography_item_info {
  width: 75%;
  float: right;
}
.discography_item_type {
  font-size: 80%;
  color: #888888;
  margin-bottom: 1%;
}
.discography_item_name {
  font-weight: bold;
}
.discography_item_song {
  font-size: 80%;
}

.footer {
  font-size: 75%;
  text-align: center;
  margin-top: 5%;
}

.icon {
  width: 10%;
}

.center {
  text-align: center;
}
.italic {
  font-style: italic;
}

.clear {
  clear: both;
}