html {
  width: 100dvw;
  overflow-x: hidden;
}

*{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  position: relative;
  background-color: rgb(26, 26, 26);
  margin: 0;
  padding: 0;
}

#bgIMG {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  height: 200vh;
  width: 200vw;
  background-image: url('');
  background-size: 75%;
}

#bgOverlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  margin: 0;
  top: 0;
  left: 0;
  height: 200vh;
  width: 200vw;
}

h1 {
  position: absolute;
  color: white;
  justify-self: center;
  top: 50px;
}

.carousel {
  position: relative;
  height: 50vh;
  width: 80vw;
  top: 15vh;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#career, #program, #music {
  position: absolute;
  border-radius: 150px;
  height: 300px;
  width: 300px;
}

#career-button, #program-button, #music-button,
.career-outline, .program-outline, .music-outline {
  border: none;
  position: absolute;
  height: 300px;
  width: 300px;
  border-radius: 150px;
  background-color: transparent;
  font-size: 25px;
  font-weight: 600;
}

.career-outline, .program-outline, .music-outline {
  border: 6px solid black;
  height: 294px;
  width: 294px;
  left: -3px;
  top: -3px;
}

#career {
  background-image: url('img-home/Degrees.jpg');
  background-size: cover;
  z-index: 3;
}

#program {
  background-image: url('img-home/new_index_code.png');
  background-size: cover;
  transform: scale(0.75) translate(-250px, -25px);
  z-index: 1;
}

#program-button {
  color: white;
  box-shadow: inset 10px 0 35px 25px black;
}

#music-button {
  box-shadow: inset 0 10px 35px 25px black;
}

#career-button {
  box-shadow: inset 0 0 35px 25px black;
}

#music {
  background-image: url('img-home/IMG_4093.JPG');
  background-size: cover;
  transform: scale(0.75) translate(250px, -25px);
  z-index: 1;
}

#left, #right {
  background-color: transparent;
  border: none;
  position: absolute;
  height: 100px;
  width: 100px;
  align-self: center;
  z-index: 5;
}

#left {
  left: 0;
}

#right {
  right: 0;
}

#left:active, #right:active {
  transform: scale(0.95);
}

.left-arrow {
  height: 75%;
  width: 100%;
  transform: rotate(-90deg);
}

.right-arrow {
  height: 75%;
  width: 100%;
  transform: rotate(90deg);
}

