@charset "utf-8";
body {
  animation: gradient 60s ease infinite;
  background: linear-gradient(45deg, rgb(0, 0, 153) 10%, rgb(0, 0, 146) 25%, rgb(71, 12, 180) 75%, rgb(83, 15, 171) 92%) ;
  background-attachment: fixed;
  background-size: 100% 200%;
  margin: auto;
  overflow: hidden;
}

@keyframes gradient { 0% { background-position: 0 0; } 50% { background-position: 100% 100%; } 100% { background-position: 0 0; } }

header { margin-bottom: 155px; }
header .logo img { display: flex;	margin: 0 auto;	max-width: 83%;	}

@media screen and (min-width: 1400px) { header { padding: 5em 0 7em 0; } }
@media screen and (max-width: 1400px) { header { padding: 1.5em 0 4em 0; } }

/* im */
a { 
  border: 0.1px black solid;
  display: none;
  pointer-events: none;
}

/*Horloge*/
canvas {
  border-radius:50%;
  box-shadow: 1px 5px black;
  display:block;
}

.container {
  border-radius:50%;
  color: transparent;
  position:fixed;
  width: 400px;
}

.container-2 {
  align-items: center;
  display: flex;
  justify-content: center;
	
}

/* Card Playlist */
.card {
  background-color: rgba(0, 0, 0, 0.45);
	border: 0.5px solid rgba(0, 0, 0, 0.25);
	box-shadow: rgba(14, 14, 14, 0.83) 0 70px 153px -5px, rgba(0, 0, 0, 0.83) 0 70px 123px -5px;
	border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 450px;
  padding: 35px;
}

.overlay {
  border-radius:50%;
  bottom: 0;
  height: 400px;
  left: 0;
  margin-bottom: -34px;
  overflow: hidden;
  position: absolute;
  right: 0;
  transform: scale(0);
  transition: all 0.4s ease;
  width: 400px;
}

.container:hover .overlay { cursor: pointer; transform: scale(0.78); }

.trigger {
  align-items: center;
  display: flex;
  justify-content: center;
	margin-top: 155px;
	width: auto;
}

/* DEBUT DE OPEN-CLOSE mod css */
.mod {
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transform: scale(1);
  transition: visibility 1.1s linear 1.25s, opacity 2s 0s, transform 2s;
  visibility: hidden;
  width: 100%;
}

.mod-content {
  background-color: rgb(0, 0, 0);
  height: 100%;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.close-button {
  background-color: rgb(0, 0, 0);
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
  cursor: pointer;
  float: left;
  line-height: 1.25rem;
  text-align: center;
  transition: 0.2s ease;
  width: 100%;
}

.close-button:hover {
  background-color:  rgb(255, 255, 255);
  transition: 0.2s ease;
}

.show-mod {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0.5s linear 0s, opacity 2.75s 0s, transform 2.55s;
}
/* FIN DE OPEN-CLOSE mod css */