* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Arial", sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

body {
    display: flex;
    flex-direction: column;
    text-align: center;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

#intro,
#discographie {
    flex-grow: 1; /* Laisse cette section prendre toute la hauteur possible */
    text-align: center;
    padding: 20px;
}

#contenu,
#discographie {
    flex-grow: 1; /* Laisse cette section prendre toute la hauteur possible */
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
    color: #444;
}

p {
    font-size: 1.2rem;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

hr {
    margin: auto;
    margin-top: 40px;
    width: 30%;
    text-align: center;
}

ul {
    list-style-type: none;
}

.album-info {
    margin-bottom: 30px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
}

.container {
    max-width: 960px; /* Largeur maximale du conteneur */
    margin: 0 auto; /* Centre le conteneur horizontalement */
    padding: 20px; /* Espace intérieur pour éviter que le contenu touche les bords */
}
