
html {
	box-sizing: border-box;
}

/* body width */
* {
    margin: 0;
    box-sizing: inherit;
}

/* style for background image added */
body {
    font-family: 'merriweather', sans-serif;
    color: rgb(255, 255, 255);
    text-align: center;
    background-image: url('u200bodumodublvck.webp');
    background-size: cover;
}

/* font selection, text fitting to screen*/
header {
    font-family: 'EB garamond', serif;
    font-size: 2em;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
}

/* adding the grid for both intro and lyrics */
.intro, .lyrics {
    display: grid;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* styling the h3 text */
h3 {
    font-size: 1.8em;
    color: #FFD700;
    text-transform: uppercase;
    text-decoration: underline;
}

/* styling increasing the font size of the text  */
p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* adding style to lyrics to make it more attractive */
.lyrics blockquote {
    font-size: 1.5em;
    font-style: italic;
    color: rgba(150, 237, 0, 0.968);
    padding: 15px;
    border-left: 5px solid #FFD700;
    border-right: 5px solid ;

}

/* adding a playable audio of the selected song */
audio {
    margin-top: 20px;
    width: 25%;
}

/* adding more style to the footer and link for more information */
footer {
    margin-top: 40px;
    font-size: 0.9em;
}


footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bolder;
    padding: 25px;
}


footer a:hover {
    text-decoration: underline;
}