body {
    background-color: black;
}

#player {  
    position: relative;       
    margin: 0 auto;
    
    height: 500px;
    width: 800px;
}

#frame {
    position: absolute;
    
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);     
    
    height: 500px;
    width: 800px;
    
    border-style: solid;
    border-width: 50px;
    border-color: #000000;
    
    z-index: 400;
}

#visualizer {
    position: relative;
    
    background-image: url(background1.jpg);
    background-size: 100% auto;
    height: 500px;
    width: 800px;
    
    z-index: 100;
}

#visualizer #logo {
    position: relative;
    
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);                         
    
    background-image: url(logo.png);
    background-size: 100% auto;
    width: 200px;
    height: 200px;
    border:8px solid #FFFFFF;
    
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;

    box-shadow: 0 0 35px rgba(255,255,255,1);   
    
    z-index: 300;           
}

#controls {
    position: absolute; 
    bottom: 0;
    width: 800px;
    
    z-index: 300;
}

#log, #bassDetection {
    color: #FFFFFF;
}

audio { 
    display:none;
}