@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,100&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

html {
    background-color: #CA0000;
}

main {
    background-color: white;
    margin: 20px auto 0 auto;
    border-radius: 5px;
    border: 3px solid #D7AE00;
    max-width: 1100px;
    width: 90%;
}

.header {
    background-color: #450102;
    color: white;
    border-radius: 5px 5px 0 0;
    padding: 10px 0 20px 0;
}

h1 {
    font-weight: 700;
    font-size: 3em;
    text-align: center;
}

.phrase-song {
    font-style: italic;
    text-align: center;
}

#img-div {
    background-color: black;
    padding: 50px 20px 20px 30px;
}

#img-caption {
    color: white;
    font-style: italic;
    font-size: 0.8em;
    text-align: center;
    padding: 15px;
}

#image {
max-width: 100%;
height: auto;
margin: auto;
border-radius: 5px;
}
  
img {
display: block;
}

.disco {
    background-color: black;
    width: 250px;
    color: white;
    border-radius: 5px;
    margin: 10px;
}

ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

li img {
width: 200px;
}

li {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    font-size: 0.8em;
    text-align: center;
    list-style-type: none;
}

.content {
    background-color: #450102;
    padding: 20px;
}

.footer {
    padding: 20px;
    background-color: #450102;
    color: white;
    text-align: center;
    font-size: 0.8em;
    font-style: italic;
}

.footer a {
    text-decoration: none;
    color: #D7AE00;
    font-weight: 700;
}