.header {
  font-family: 'comic sans ms';
  color: #C00;
  font-size: 3em;
  text-align: center;
  margin: .5% 0px;
}

#mainHeader {
  font-family: 'comic sans ms';
  color: #C00;
  font-size: 3em;
  text-align: center;
  margin: .5% 0px;
  width: 100%
}

.lpTitle {
  font-family: 'comic sans ms';
  color: #C00;
  background: none;
  font-size: 2vw;
  text-align: center
}

body {
  background-color: black;
  color: white
}

#container {
  display: grid;
  grid-gap: 2vw;
  grid-template-columns: 20vw 20vw 20vw;
  //  grid-template-rows: 30vw 30vw;
  justify-content: space-evenly;
  position: relative;
}

.tn {
  height:20vw;
  background-size: 20vw 20vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tn:hover {
  box-shadow: 0px 0px 4px 4px #FFFFEE
}

#virtualLpDiv {
  min-width: 300px;
  min-height: 300px;
  visibility: hidden;
  width: 50vw;
  height: 50vw;
  position: absolute;
  z-index: 3;
  opacity: 1;
  background-color: #CCC
}

#bgFilter {
  background-color: white;
  opacity: .8;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0px;
  top: 0px
}

p {
  margin-bottom: .5em
}

#closeButton {
  font-family: Arial;
  font-weight: bold;
  border-radius: 50%;
  height: 3vw;
  width: 3vw;
  color: white;
  border: 3px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  ;
  z-index: 100
}

#closeButton:hover {
  background-color: red
}

.roundButton {
  font-family: Arial;
  font-weight: bold;
  border-radius: 50%;
  height: 3vw;
  width: 3vw;
  color: white;
  border: 3px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}

.roundButton:hover {
  background-color: red
}

.floating {
  position: absolute;
  ;
  z-index: 100
}

.loadingSVG {
  margin: none;
  background: none;
  display: inline-block;
  shape-rendering: auto;
}

.play-button {
  margin: 0 2% 0 5%;
  border: 0px;
  background: transparent;
  display: inline;
  opacity: 0.85;
  font-size: 60%
}

.play-button:hover {
  cursor: pointer;
  opacity: 1;

}

.play-button i {
  vertical-align: 20%
}

#tooltip {
  position: absolute;
  display: none;
  color: black;
  background-color: white;
  margin-left: 10px;
  padding: 10px 10px;
  z-index: 200;
  font-size: 12px;
  border-radius: 10px;
}

#tooltip:after {
  content: " ";
  position: absolute;
  left: -10px;
  top: calc(50% - 10px);
  border-top: 10px solid transparent;
  border-right: 11px solid white;
  border-left: none;
  border-bottom: 10px solid transparent;
}
#player:hover
{
  cursor: pointer;
}
