body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Bebas Neue", sans-serif;
  background-image: url(glowbg.png);
  background-size: auto;
}

body {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version */
}

* {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version */
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: floatUp 5s linear infinite;
  border: 5px solid white;
}

@keyframes floatUp {
  0% {
    bottom: -150px;
  }
  100% {
    bottom: 100vh;
  }
}

.graph-area {
  /* background-color: #ffc0cb70; */
  width: 100vw;
  height: 100vh;
  top: 0;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.graph-holder {
  /* background-color: orange; */
  width: 16%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin: 0 1% 0 1%;
}

.bar-chart {
  background-color: blue;
  width: 100%;
  height: 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-content: flex-end;
  flex-direction: column;
  transition: 0.5s;
  border-radius: 20%;
}
.avatar {
  background-color: black;
  /* width: 12vw; */
  height: 12vw;
  border-radius: 100%;
  aspect-ratio: 1;
  margin-bottom: 4%;
  border: 0.6vw solid white;
  background-size: contain;
}
.reset-button {
  width: 5vw;
  height: 5vw;
  background-color: #36697c;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1vw;
  margin-left: 1vw;
  border-radius: 1vw;
  border: 1px solid #78b6ce;
  background-image: url(reset.png);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
  transition: 0.1s;
  cursor: pointer;
}
.reset-button:active {
  scale: 0.8;
}
.settings-button {
  width: 5vw;
  height: 5vw;
  background-color: #36697c;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 1vw;
  margin-right: 1vw;
  border-radius: 1vw;
  border: 1px solid #78b6ce;
  background-image: url(settings.png);
  background-size: 73%;
  /* background: no-repeat; */
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.1s;
  cursor: pointer;
}
.settings-button:active {
  scale: 0.8;
}
.qr-button {
  width: 10vw;
  height: 3vw;
  background-color: #36697c;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 1vw;
  margin-left: 1vw;
  border-radius: 1vw;
  border: 1px solid #78b6ce;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.qr-button:active {
  scale: 0.8;
}

.shade-settings {
  position: absolute;
  background-color: #4c4c4ccc;
  width: 100vw;
  height: 100vh;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: none;
}
.settings-box {
  width: 28vw;
  background-color: yellow;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 11px;
}

.settings-title {
  font-size: 3vw;
}
.inputboxes {
  display: flex;
  justify-content: space-between;
  width: 92%;
}
.settings-ok {
  width: 100%;
  height: 4vw;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  background-color: black;
  border-radius: 4vw;
  font-size: 3vw;
  color: white;
  margin-top: 1vw;
}
.shade-qr {
  position: absolute;
  background-color: #4c4c4ccc;
  width: 100vw;
  height: 100vh;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: none;
}
.qr-box {
  width: 28vw;
  background-color: #36697c;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border: 6px solid white;
}

.qr-title {
  font-size: 3vw;
  color: white;
}
.qr-code {
  display: flex;
  justify-content: space-between;
  width: 92%;
}
.qr-ok {
  width: 100%;
  height: 4vw;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  background-color: black;
  border-radius: 4vw;
  font-size: 3vw;
  color: white;
  margin-top: 1vw;
  border: 7px solid white;
}

.label {
  font-size: 2vw;
}

.multiplierbox {
  font-size: 1.5vw;
  border: 2px solid black;
  border-radius: 20vw;
  text-align: center;
}
.vote-number {
  font-size: 2.5vw;
  color: white;
  margin-top: 5%;
}
.vote-text {
  font-size: 1.5vw;
  color: white;
}
.percentage {
  font-size: 3vw;
  color: white;
}

.player-1-bar {
  background: rgb(0, 211, 255);
  background: linear-gradient(
    90deg,
    rgba(0, 211, 255, 0) 0%,
    rgba(0, 211, 255, 1) 33%,
    rgba(0, 211, 255, 1) 66%,
    rgba(0, 211, 255, 0) 100%
  );
}
.player-2-bar {
  background: rgb(14, 255, 0);
  background: linear-gradient(
    90deg,
    rgba(14, 255, 0, 0) 0%,
    rgba(14, 255, 0, 1) 33%,
    rgba(14, 255, 0, 1) 66%,
    rgba(14, 255, 0, 0) 100%
  );
}

.player-3-bar {
  background: rgb(255, 205, 0);
  background: linear-gradient(
    90deg,
    rgba(255, 205, 0, 0) 0%,
    rgba(255, 205, 0, 1) 33%,
    rgba(255, 205, 0, 1) 66%,
    rgba(255, 205, 0, 0) 100%
  );
}
.player-4-bar {
  background: rgb(244, 0, 255);
  background: linear-gradient(
    90deg,
    rgba(244, 0, 255, 0) 0%,
    rgba(244, 0, 255, 1) 33%,
    rgba(244, 0, 255, 1) 66%,
    rgba(244, 0, 255, 0) 100%
  );
}
.player-5-bar {
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 0) 0%,
    rgb(0 61 255) 33%,
    rgb(29 61 255) 66%,
    rgba(255, 0, 0, 0) 100%
  );
}

.qr-button {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.qricon {
  width: 2vw;
  height: 2vw;
  /* background-color: red; */
  background-image: url(qr.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 94%;
}
.qrtext {
  font-size: 1.6vw;
  margin-left: 0.5vw;
  display: flex;
  align-content: center;
  align-items: center;
  color: #d5fffc;
}
.room {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 1vw;
  color: #d5fffc57;
  font-size: 2vw;
}
.yes-yes-logo {
  height: 2vw;
  width: 8vw;
  background-image: url(yesyes.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.qr-code {
  height: 20vw;
  background-image: url(votingqr.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.namestrap {
  font-size: 2.5vw;
  color: aliceblue;
}
.client {
  /* position: absolute; */
  top: 1;
  width: 10vw;
  text-align: center;
  margin-top: 1vw;
  color: #d5fffc57;
  font-size: 2vw;
  /* background-color: red; */
  margin-left: auto;
  margin-right: auto;
  align-content: center;
  height: 8vw;
  background-image: url(redbullcultureclashlogo.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
