html {
    height: 100%;
}

body {
    background: black;
	/*background: -moz-radial-gradient(center, ellipse cover,  rgba(21, 191, 78,1) 0%, rgba(81, 189, 112,1) 50%, rgba(5, 107, 38,1) 100%);
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(21, 191, 78,1) 0%,rgba(81, 189, 112,1) 50%,rgba(5, 107, 38,1) 100%);
	background: radial-gradient(ellipse at center,  rgba(21, 191, 78,1) 0%,rgba(81, 189, 112,1) 50%,rgba(5, 107, 38,1) 100%);
    
    background-image: url("235.jpg");*/
    font-family: "proxima-nova";
    background-size: 50%;
    /*background-size: cover;*/
}

h1{
    color: white;
}

.container {
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    
    display: block;
    unicode-bidi: isolate;
    
    height: inherit;
    left: 0;


    position: absolute;
    transition: opacity 170ms linear;
    top: 0;
    width: inherit;
    z-index: 0;
}

.phone{
  animation: opacityAni 400ms linear 1s forwards;
  background: rgb(30,30,40);
  background: -moz-linear-gradient(top,  rgba(16, 16, 82,1) 0%, rgba(42, 83, 181,1) 34%, rgba(49,189,247,1) 88%, rgba(232,254,254,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(16, 16, 82,1) 0%,rgba(42, 83, 181,1) 34%,rgba(49,189,247,1) 88%,rgba(232,254,254,1) 100%);
  background: linear-gradient(to bottom,  rgba(16, 16, 82,1) 0%,rgba(42, 83, 181,1) 34%,rgba(49,189,247,1) 88%,rgba(232,254,254,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e1e28', endColorstr='#e8fefe',GradientType=0 );
  border-radius: 5px;
  box-shadow: 0 0 2px 2px #030060;
  height: 300px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  width: 340px
}


select {
    margin: 20px 0;
    padding: 10px;
    font-size: 16px;
    width: inherit;
    
    border-radius: 0px;
    color: white !important;
    background-color: #0d0d64 !important;
    border-color: #30afee;
    border: 0px;
    text-overflow: ellipsis;
}



.audio-player {
    background: #333;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

audio {
    width: inherit;
    /*appearance: none; /* Enlève le style natif du navigateur */
    border-radius: none;
    height: auto;
  
}

audio::-webkit-media-controls {
    display: none !important; /* Cache les contrôles par défaut */
}

/* Styles personnalisés pour la barre de son */
.audio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.play-btn, .pause-btn {
    background: #ff4081;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.play-btn:hover, .pause-btn:hover {
    background: #e91e63;
}

.progress {
    flex-grow: 1;
    height: 5px;
    background: #ccc;
    border-radius: 5px;
    margin: 0 10px;
    position: relative;
}

.progress::before {
    content: '';
    height: 100%;
    background: #ff4081;
    width: 0; /* Modifie ceci avec JavaScript */
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.image {
    height: 100px !important;

    
}