/*---------------------------------------------------------------------------------
 Theme Name:   Divi Child
 Theme URI:    https://www.elegantthemes.com/
 Description:  Divi Child theme by Web Hors Piste
 Author:       Web Hors Piste
 Author URI:   https://www.webhorspiste.com/
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
------------------------------ ADDITIONAL CSS HERE ------------------------------*/

body {
	background-color : grey;
}
/*** GALERIE TALENTS ***/
.galerie-talents {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.talent-item {
  width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.talent-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
  padding: 10px;
}

/*** GALERIE ALBUMS ***/

.galerie-albums {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.album-item {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.album-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px;
}

/*** GALERIE PLAYLISTS ***/

.galerie-playlists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.playlist-item {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.playlist-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px;
}

