@font-face {
  font-family: Assistant;
  src: url(fonts/Assistant.woff2);
}
@font-face {
  font-family: Ubuntu;
  src: url(fonts/Ubuntu.woff2);
}
body {
  font-family: Assistant;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  max-height: 100svh;
  max-width: 100svw;
}

.spotify-items {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  height: 100svh;
}
.spotify-items .item {
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  width: 50svw;
  display: flex;
  align-items: center;
}
.spotify-items .item .item-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 4rem;
  border-radius: 1rem;
}
.spotify-items .item .item-container .track {
  font-size: 4rem;
  text-align: center;
  margin: 0;
  color: #fff;
}
.spotify-items .item .item-container .artist-container {
  display: flex;
  font-size: 2.5rem;
  align-items: center;
}
.spotify-items .item .item-container .artist-container .artist-prefix {
  float: inline-start;
  color: #aaa;
  padding-right: 0.3rem;
}
.spotify-items .item .item-container .artist-container .artist {
  float: inline-end;
  margin: 0;
  font-style: italic;
  color: #fff;
}
.spotify-items .left-item {
  background-image: url();
}
.spotify-items .left-item .item-container {
  background-color: rgba(0, 0, 255, 0.5);
}
.spotify-items .right-item {
  background-image: url();
}
.spotify-items .right-item .item-container {
  background-color: rgba(255, 0, 0, 0.5);
}

.btn-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
}
.btn-container .choice-btn {
  height: 100svh;
  width: 50svw;
  border: none;
  opacity: 0.15;
  background-color: #333;
}
.btn-container .choice-btn:hover {
  background-color: #000;
}

.centre-circle-container {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.centre-circle-container .centre-circle {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  height: 75px;
  width: 75px;
}
.centre-circle-container .centre-circle .centre-text {
  font-family: Ubuntu;
  font-weight: 600;
  font-size: 2rem;
}

.score-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
}
.score-container .score {
  z-index: 3;
  background-color: #aaa;
  border-radius: 1rem;
  padding: 0.5rem;
}/*# sourceMappingURL=stylesheet.css.map */