html, body{
  max-width: 100%;
  padding: 0;
  margin: 0;
}
/* Mobile and Email div */
#headding2 {
  color: #fff;  
  position: relative;
  text-align: right;
  padding-bottom: 3px; 
}

/* Color animation for Email, Mobile and Web-counter information. */
#emailMobile, .visitors{
  animation: a 5s infinite alternate ease-in-out;
}
@keyframes a {
  from {
    color: #fff;
  }
  to {
    color: #ff0080;
  }
}

/* Audio Buttons */
.button-audio{
  color: yellow;
  background: #2f92d7;
  cursor: pointer;
  height: 40px;
  width: 40px;
  padding: 0;
  border: 2px solid #ff0080;
}
#mySidenav a {
    position: absolute;
    left: -98px;
    transition: 0.3s;
    width: 120px;
    height: 40px;
    text-decoration: none;
    font-size: 20px;
    color: yellow;
    border-radius: 0 5px 5px 0;
    z-index: 111;
}

#mySidenav a:hover {
    left: 0;
    background: #ff0080;
}

#play {
    top: 80px;
    background-color: rgba(0,0,0,0.3);
}

#pause {
    top: 125px;
    background-color: rgba(0,0,0,0.3);
}

#stop {
    top: 170px;
    background-color: rgba(0,0,0,0.3);
}

/* Transparent backgroud for login form */
.jumbotron-content{
  position: absolute;
  right: 0;
  top: 0;
  padding: 0px 15px;
  width: 30%;
/*  height: calc(var(--windowHeight)*0.857519);*/
  background-color: rgba(0, 0, 0, 0.3); /* Transparent Area*/
}

/*Login Form*/
#form1{
  margin-top: 160px;
  height: calc(var(--windowHeight)*0.857519);
}

#form-group{
  font-weight: 700;
}

#form-group label{
  color: #fff;
}
#login {
  margin-left: 70px;
  display: inline-block;
}
.btn {
  padding: 5px 5%;
  margin: 0 3%;
}
.btn:hover,#login:hover{
  transition: all 200ms ease-in;
  transform: rotate(0) scale(1.1);
}
.Forget{
  float: right;
  margin-top: 15px;
  color: #0077f9;
}
.Forget:hover{
  color: #ff0080;
  text-decoration: none;
  transition: all 200ms ease-in;
  transform: rotate(0) scale(1.1);
}
@media (min-width:00px) and (max-width:668px) {
  .jumbotron-content {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0px 15px;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  } 
}