/*-- GENERAL --*/
body {
    background: url();
    background-color: rgb(0, 0, 0);
    background-position: top;
    background-attachment: fixed;
    color: white;
    font-family: Times;
    position: absolute;
    height: auto;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    
}

.everythang {
    position: relative;
    margin: auto;
    justify-content: center;
    margin-top: 10px;
}

.chains {
    position: absolute;
    height: 50px;
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
       
} 

.chains img {
    position: absolute;
    width: 50px;
    pointer-events: none;
}

.main {
    top: 23px; 
        position: relative;  
        height: 550px; 
        width: 850px; 
        border-style: ridge; 
        background-image: url('img/bg1.gif'); 
        background-size: 420px;
        border-color: rgb(81, 2, 7); 
        text-align: left; 
        padding-bottom: 20px;
        
}

.main p {
    font-size: 28px; 
    text-align: justify;
    margin-top: 45px; 
    margin-left: 40px; 
    width: 380px

}


.main h1 {
    font-family: "main";
    font-size: 40px;
    position: absolute;
    text-align: center;
    top: -76px;
    width: 850px;
    transform: rotate(0.7deg);
    z-index: 2;
}

@font-face {

    font-family: 'main'; 
    src: url("FONTS/plastique.woff")

  }
  
 .bar {
        top: 100px;
        position: relative;  
        height: 220px; 
        width: 750px; 
        border-style: ridge; 
        border-radius: 5px; 
        background-image: url('img/bg2.png'); 
        border-color: #510207; 
        text-align: left; 
        padding-top: 10px; 
        padding-bottom: 10px;
        margin-top: -85px;
    
}

.bar h1 {
    font-style: bold;
    margin: 0px;
    margin-top: 2px;
    margin-left: 20px;
    font-size: 30px;
    text-decoration: underline;
    
}

/*--Decorations--*/

.blinkies {
    position: relative;
    width: 850px;
    margin-top: 36px;

}

/*--Interests--*/

.penta {
    display: flex;
    width: min-content;
    justify-content: center;
    align-items: center;

}

.MORE {
    width: 180px; 
    height: auto;
    font-size: 20px;
    background-color: black;
    color: white;
    border-style: ridge; 
    border-color: #510207;
    margin: 10px;
    text-shadow: #ffffff 0px 2px 8px;
    padding: 8px;

  }

        
.hooray {

display: flex;
width: 800px;
height: auto;
margin: auto;
justify-content: center;

}

.yay {

font-size: 16px;
border-style: ridge; 
border-color: #510207;
border-radius: 5px;
background-image: url(img/bg1.png);
color: white;
 width: 300px;
 margin: 5px;
padding: 10px;
text-align: start;
}

.bottom {
    position: relative;
    top: 180px;
    width: 100%; 
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    background: linear-gradient(black, #1E1C1C 30%, #BF4E3D 100%);
    
}

/*--Music Player CSS--*/

.music-body {
    height: auto;
    margin: 0px;
    font-family: Times;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    
}

.music-container {
    display: flex;
    flex-direction: row;
    padding: 0px;
    margin-left: 0px;
    position: relative;
    margin: 0px;
    box-sizing: border-box;
    
}

.music-container p {
    margin: 0px;
}

.img-container {
    box-sizing: border-box;
    position: relative;
    width: 110px;
}

.img-container::after {
    content: '';
    background-image: '';
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: -50px;
    transform: translate(50%, 50%);
}

.img-container img {
    box-sizing: border-box;
    width: 170px;
    height: inherit;
    right: 230px;
    bottom: -180px;
    object-fit: cover;
    position: absolute;
    border-style: dashed;
    border-width: 2px;
    border-color: #510207; 
    
    animation: rotate 3s linear infinite;
    
    animation-play-state: paused;
}

.music-container.play {     /*--.img-container img--*/
    animation-play-state: running;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    
    to {
        transform: rotate(360deg);
    }
}

.action-btn {
    background: none;
    color: white;
    padding: 5px 12px;
    margin: 0 100px;
    border-style: hidden;

    cursor: pointer;
    
}

.navigation {
    display: flex;
    position: relative;
    top: 200px;
    z-index: 3;
    align-items: center;
    justify-content: center;
    height: 40px; 
    width: 750px; 
    border-style: ridge; 
    border-radius: 5px; 
    border-color: #510207; 
    background-image: url('img/bg2.png'); 
    padding-top: 10px; 
    padding-bottom: 10px;

}

.music-info {
    position: absolute;
    z-index: 2;
    margin-left: -106px;
    margin-top: 20px;
    font-size: 18px;
    
}

.music-info h1 {
    margin: 0px;
    font-size: 25px;
    text-decoration: none;
    
}

.progress-container {
    background-color: #510207;
    border-radius: 0px;
    margin: 8px 0;
    height: 10px;
    width: 100%;
    z-index: 2;
    margin-left: 0px;
    position: absolute;
    cursor: pointer;
}

.progress {
    background-color: white;
    background-image: url("img/house.jpg");
    background-position: 400px;
    object-fit: cover;
    border-radius: 0px;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
    z-index: 2;
    position: absolute;
}

.activeSong {
    background: rgba(15, 0, 76, 0.66);
}

.trackDuration {
    position: absolute; 
    right: 5px;
    margin-top: 3.5px;
    font-size: 10px;
}

.trackInfo {
    display: inline-block;
    width: 130px;
    word-wrap: break-word;
    margin-left: -5px;
}

.rotate-anim:hover {
    animation: rotateBackAndForth 5s ease infinite;
    animation-play-state: running;
}

@keyframes rotateBackAndForth {
    33% {transform: rotate(30deg)}
    66% {transform: rotate(-30deg)}
}

