a:link {
 text-decoration:none;
}

a, a:visited{
     color: grey;
}


body, html {
  height: 100%;
  margin: 0;
  font: 400 15px/1.8 "Lato", sans-serif;
  color: #777;
  background-color: black;
  scroll-behavior: smooth;
}

/* For all devices with a screen size smaller than 1366px, the background-attachment property will be scroll instead of fixed */
@media only screen and (max-device-width: 1366px) {
  .bg {
    background-attachment: scroll;
  }
}

.caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #000;
}


.caption span.border {
  background-color: #111;
  color: #fff;
  padding: 18px;
  font-size: 25px;
  letter-spacing: 10px;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
  transition: .4s ease 0s
}

.hero-text button:hover {
  background-color: black;
  color: white;
}

.test {
  transition: .4s ease 0s
}

audio {
  width: 300px;
  box-shadow: 5px 5px 20px rgba(0,0, 0, 0.4);
  border-radius: 90px;
  transform: scale(1.05);
}

/*
.audioPlayer{
  display: block;
  border-radius: 20px;
  margin:0 auto;
}
*/


.labelHistory {
  // height: 80px
  width: 100%;
  color: #d7d7d7;
  font-size: 14px;
  bottom: 20px;
  text-align: right;
}


.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: black;
   color: grey;
   text-align: center;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.2s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.nav-menu {
    background: #151421;
    padding: 20% 17% 0;
    font-size: 1.15em;
    z-index: 1e+47!important;
    cursor: default;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* */

.burger-button {
    position: fixed;
    width: 36px;
    height: 30px;
    right: 10px;
    top: 20px;
    margin-top: 12px;
    z-index: 9999!important;
    transition: opacity 1s;
    opacity: 1;
}

.burger-button.hidden {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0s;
}

.burger-bars {
    background: #D62246;
    opacity: 1!important;
    height: 2px!important;
    transition: all .2s ease-in-out!important;
}

