body {
  padding: 0;
  margin: 0;
  background: black;
  color: white;
  font-family: "Source Sans 3", sans-serif;
}

#selector {
  width: calc(100% - 100px);
  height: 100vh;
  margin-left: -100%;
  top: 0;
  display: fixed;
}
.artwork {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  border-radius: 10px;
}
.title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
.album {
  font-size: 18px;
  margin-top: 10px;
  font-weight: normal;
  opacity: 0.6;
  text-align: center;
  font-style: oblique;
  margin-bottom: 20px;
}
.thumbUp {7
  float: left;
  background: green;
  width: 120px;
  height: 120px;
  border-radius: 75px;
  cursor: pointer;
  opacity: 0.5;
}
.thumbUp:hover {
  opacity: 0.9;
  transition: 0.5s;
}
.thumbUp img {
  width: 80px;
  margin-top: 20px;
  margin-left: 20px;
}
.thumbDown {
  float: right;
  background: red;
  width: 120px;
  height: 120px;
  border-radius: 75px;
  cursor: pointer;
  opacity: 0.5;
}
.thumbDown:hover {
  opacity: 0.9;
  transition: 0.5s;
}
.thumbDown img {
  width: 80px;
  margin-top: 20px;
  margin-left: 20px;
  transform: rotate(180deg);
}
#bgLogo {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
}
#bgLogo img {
  width: 100%;
  opacity: 0.2;
}
