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

body {
  background: black url('assets/ep_naturalblack.png') repeat;
}

#wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.05));
}

#player {
  border-top: 10px solid;
  background-color: rgba(0, 0, 0, 0.5);
  color: whitesmoke;
  padding: 2vh 4vw 4vh 4vw;
  transition: all 0.25s ease-in-out;
}

#snackbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  background: transparent url('assets/halftone-yellow.png') repeat;
  display: none;
}

#snackbar span {
  margin-left: 6px;
  font-style: italic;
}

.shadow {
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.6);
}

.cursive {
  font-family: 'Abril Fatface', cursive;
}

.serif {
  font-family: 'Cormorant Garamond', serif;
}

.sans-serif {
  font-family: 'Open Sans', sans-serif;
}

.underline {
  text-decoration: underline;
}

h1.year {
  font-size: 400%;
  font-weight: lighter;
  line-height: 150%;
  text-align: center;
}

h2.artist {
  margin-top: 10px;
  font-size: 200%;
  font-weight: 300;
  text-align: center;
}

h3.title {
  font-size: 110%;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}

h4.album-track {
  margin-top: 20px;
  font-size: 80%;
  font-weight: 400;
  text-align: center;
}
