/* styles.css */

/* Style for the header */
header {
    background: linear-gradient(to right, #4b1818, #800000);
    color: #ffffff; 
    padding: 10px; 
    text-align: left; 
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center align items vertically */
}

/* Style for logo */
.logo {
    max-width: 120px; 
    margin-right: 10px; 
    margin-bottom: -60px; 
}

/* Style for h1 within the header */
header h1 {
    font-size: 14px; 
    font-family: Helvetica;
    margin: 0; 
    margin-left: 10px;
}

/* Style for h2 in the body */
body h2 {
    margin-top: 5%;
    margin-bottom: 20px;
    font-size: 20px; 
    font-family: Helvetica;
    text-align: center;
}

/* Style for the main content */
.lyrics-container {
    width: 60%; 
    margin: 0 auto; 
    text-align: center; 
    background: linear-gradient(to right, #4b1818, #800000); 
    padding: 20px; 
    color: rgb(211, 119, 91); 
    font-weight: 200;
    height: 300px; 
    overflow: auto hidden;
    border-radius: 10px;
}

.lyrics-container p:not(:last-child) {
    margin-top: 100px; /* Adjust as needed */
    margin-bottom: 50px; /* Adjust as needed */
}

.custom-audio {
    margin-top: 20px; /* Add margin between lyrics container and audio controls */
    width: 50%; /* Adjust width to match lyrics container */
    justify-content: center; /* Center the audio controls horizontally */
    margin-left: 25%;
    align-items: center;
    color: red
}

.custom-audio::-webkit-media-controls-play-button {
    background-color: gray;
    border-radius: 10px;
}



.active-lyric {
    color: rgb(241, 105, 64);
    font-size: 30px;
}

/* Logo container */
.pylon-container {
    position: fixed;
    left: 91%;
    transform: translateX(-50%);
    z-index: 999; /* Ensure the logo is above other content */
    
}

/* Logo style */
.logo {
    max-width: 120px;
}
