body {
    background-image: url("img/bg3.jpg")
}

h1 {
    text-align: center;
    color: white;
    font-family: behove;
    font-size: 64px;
    text-shadow: 4px 4px 4px black;
    margin: 24px;
    animation-name: wavy;
}

h2 {
    color: white;
    font-family: shortpics;
    text-align: center;
    font-size: 48px;
}

h3 {
    color: white;
    font-family: shortpics;
    text-align: center;
    font-size: 32px;
}

p {
    color: white;
    font-family: coolvetica;
    font-size: 20px;
    text-align: center;
}

a {
  color: hotpink;
  font-weight: bold;
  text-align: center;
  display: block;
}


 .audio-container {
  display: flex;
  justify-content: center;
  align-items: center 
}



.headerBodyBox {
    border: 4px solid white;
    background-image: url(img/headerbg.jpg);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px;
}

.mainBodyBox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutBox {
    border: 4px solid white;
    border-radius: 12px;
    background-image: url(img/bg1.gif);
    margin: 16px;
    width: 50%;
    height: 612px;
    text-shadow: 2px 2px black;
}

.musicBox {
    border: 4px solid white;
    border-radius: 12px;
    background-image: url(img/bg1.gif);
    margin: 16px;
    width: 50%;
    height: 612px;
    text-shadow: 2px 2px black;
}

.footer {
    border: 4px solid white;
    border-radius: 12px;
    background-image: url(img/headerbg.jpg);
    margin: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;   
}


.spin-text {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 
        1px 1px 0px #e8e8e8, 
        2px 2px 0px #9e9e9e, 
        3px 3px 0px #747474, 
        4px 4px 0px #606060, 
        5px 5px 0px #161616;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    animation: spin-3d 4s infinite linear;
}

@keyframes spin-3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}


@font-face {
    font-family: behove;
    src: url(marola.ttf);
}

@font-face {
    font-family: shortpics;
    src: url(shortpics.ttf);
}

@font-face {
    font-family: coolvetica;
    src: url(coolvetica.otf);
}