.lounge-color {
  color: #fff;
  background-color: rgb(233, 60, 76);
  border-color: rgb(233, 60, 76);
}
.lounge-color:hover {
  color: rgb(233, 60, 76);
  background-color: white;
  border-color: white;
}
.lounge-color-inv {
  color: rgb(233, 60, 76);
  background-color: white;
  border-color: white;
}
.lounge-color-inv:hover {
  color: white;
  background-color: rgb(233, 60, 76);
  border-color: rgb(233, 60, 76);
}
.lounge-font-color {
  color: rgb(233, 60, 76);
}

#cover-spin {
  position:fixed;
  width:100%;
  left:0;right:0;top:0;bottom:0;
  background-color: rgba(233,60,76, 0.9);
  z-index:9999;
  display:none;
}
#CountDown {
  font-weight: bold;
  word-spacing: 3px;
  font-size: 20pt;
  color: white;
}
#CountDownText {
  padding-bottom: 60px;
  word-spacing: 7px;
    color: white;
}
/* #MastHead {
  top: 500px;
} */
#Headline {
  color: white;
}
#height {
  height: 100px;
}
#appIcon {
  margin-top: 50px;
  max-width: 200px;
  max-height: 200px;
}
@-webkit-keyframes spin {
from {-webkit-transform:rotate(0deg);}
to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}

#cover-spin::after {
  content:'';
  display:block;
  position:absolute;
  left:48%;top:40%;
  width:40px;height:40px;
  border-style:solid;
  border-color:white;
  border-top-color:transparent;
  border-width: 4px;
  border-radius:50%;
  -webkit-animation: spin .8s linear infinite;
  animation: spin .8s linear infinite;
}
