/*
 * Globals
 */


/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);  
}

.logo-img{
  height: 4em;
}
.CD {  
  position: relative; /* Add relative positioning */
  display: block;
  top: 30%;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.cd-img{  
  /* animation: rotate 100s linear infinite; */
  width: 80%;
  height: auto;
}

.cd-img:hover{
  cursor: pointer;
}
.cd-youtube{  
  position: absolute; /* Add absolute positioning */  
  top: 50%;
  left: 50%;
  width: 60%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  display: none;
}

@keyframes rotate {
  from {
    transform: rotate(var(--start-deg, 0deg));
  }
  to {
    transform: rotate(359deg);
  }
}

.cover-container {
  max-width: 65em;
  background-image: url('../img/bg2.jpg');
  background-size: cover;
  background-position: center,top;
  background-repeat: no-repeat; 
}


/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}
