@charset "utf-8";
/* CSS Document */

/* Thème sombre pour la page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
    text-align: center;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
h1 {
    color: #F4E4E4;
}

.title-link {
    color: white;
    text-decoration: none;
}

.title-link:hover {
    color: #1DB954; /* Vert de Spotify */
	text-decoration: underline;
}

.youtube-video iframe {
        width: 100%;
        height: 500px;
        border-radius: 10px;
    }
.youtube-video img {
    border-radius: 12px; /* Tu peux ajuster cette valeur si nécessaire */
}
.social-links {
    list-style-type: none;
    padding: 0;
}
.social-links li {
    margin: 10px 0;
}
.social-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.social-links li a:hover {
    background-color: #ff5722;
}
.social-links li img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-icons a {
    margin: 0 10px;
    text-decoration: none;
}
.social-icons a img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}
.social-icons a:hover img {
    transform: scale(1.2);
}
@media (max-width: 600px) {
    .social-links li a {
        font-size: 16px;
    }
    .social-links li img {
        width: 25px;
        height: 25px;
    }
    .social-icons a img {
        width: 30px;
        height: 30px;
    }
}


