* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
    text-align: center;
}

#contenu {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

img[alt="Logo du site"] {
    margin-top: 20px;
    width: 300px;
}

#language-buttons {
    display: flex;
    gap: 10px;
}

.flag {
    cursor: pointer;
    width: 40px;
    transition: transform 0.3s;
}

.flag:hover {
    transform: scale(1.1);
}

#box-translucide {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    color: #ddd;
}

select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #ffffff;
    font-size: 1rem;
}

.album-cover {
    width: 100%;
    max-width: 200px;
    border-radius: 5px;
    margin: 10px 0;
}

.song-details {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.5;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #28a745;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

select, input[type="text"] {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
}

#footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    display: inline;
    position: relative;
    bottom: 0;
    margin-top: auto;
}

#footer a {
    color: #ffffff;
    text-decoration: none;
}

#footer a:hover {
    color: #ccc;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    #box-translucide {
        width: 90%;
        padding: 15px;
    }

    .album-cover {
        max-width: 150px;
    }

    button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}