html {
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

canvas {
  width: 100%;
  height: 100%;
  border: 0;
}

.login {
  position: absolute;
  right: 10px;
  top: 10px;
  font: 8pt Arial;
  color: rgba(255, 255, 255, 0.33);
}

.biglogin {
  position: absolute;
  top: 40%;
  width: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s linear;
}

.biglogin a {
  margin: 0 auto;
  font: 18pt "Helvetica Neue", "Helvetica", Arial;
  padding: 20px 40px;
  border-radius: 100px;
  background-color: rgb(30, 200, 20);
  box-shadow: 0 0 100px rgba(30, 230, 20, 0.9);
  color: #fff;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.biglogin a:hover {
  transform: scale(1.1);
}

div.toast {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  padding: 40px;
  transform: translateY(100px);
  transition: all 1.0s ease-in-out;
  opacity: 0.0;
}

div.toast.visible {
  transform: translateY(0);
  opacity: 1.0;
}

div.toast #text {
  display: block;
  font-size: 25pt;
  font-family: "Helvetica Neue", Helvetica;
  font-weight: bold;
  color: #fff;
  width: 80%;
  margin: auto;
}

div.toast #text2 {
  display: block;
  font-size: 15pt;
  font-family: "Helvetica Neue", Helvetica;
  font-weight: bold;
  color: #ccc;
  width: 80%;
  margin: auto;
}

div.toast #previous {
  width: 10%;
  float: left;
  height: 100%;
  font-size: 25pt;
  color: white;
  position: relative;
  bottom: 1em;
}

div.toast #previous:hover, div.toast #next:hover, #options>#full-screen:hover, #options>#refresh:hover, #options>#changeAcc:hover {
  color: gray;
}

div.toast #next {
  width: 10%;
  float: right;
  height: 100%;
  font-size: 25pt;
  color: white;
  position: relative;
  bottom: 1em;
}

div.trackposition {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

div.trackposition div.fill {
  transition: width 0.1s ease-in-out;
  background-color: #1ed660;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}

#options {
  position: absolute;
  top: 1em;
  right: 1em;
  display: none;
}

#options>#full-screen {
  font-size: 25pt;
  color: white;
}

#options>#refresh {
  font-size: 25pt;
  color: white;
}

#options>#changeAcc {
  font-size: 25pt;
  color: white;
}

#cover {
  display: none;
}

#bar {
  background-color: white;
  height: 5em;
  width: 1%;
  position: absolute;
  top: 1em;
  left: 1em;
  transition: height 0.35s;
}

#floatingcover {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  padding: 30px;
  z-index: 200;
  text-align: left
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s linear;
}

#floatingname {
  font-family: Share, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 32px;
  background: #000;
  color: #fff;
  padding: 3px 6px;
  position: relative;
  z-index: 10
}

#floatingartist {
  font-family: Share, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  position: relative;
  background: #000;
  color: #fff;
  padding: 3px 6px;
  position: relative;
  z-index: 10
}

#floatingimage{
  max-width: 25%;
  height: auto;
  padding-right: 15px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  font-size: 25px;
  font-family: Share, sans-serif;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 105%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
