@font-face {
    font-family: 'lavish';
    /* src: url('Letters-Lavish.otf'); */
    src: url('../../tipoteca/TPUBody-Regular.woff2');
}

@font-face {
    font-family: 'velvelyne';
    src: url('../Velvelyne-Light.woff2')
}

body,html{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: #64B269;
    color: #AFE0A1;
     font-family: 'velvelyne';
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    font-weight: 10 !important;

}

#afterClick{
    display: none;
    flex-direction: column;
}

.container{
     display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.content-list{
    margin-top: 400px;
}

audio{
   opacity: 0;
}

.prog{
    width: 80vw;
}

progress{
    width: 100% ;
    height: 10px;
    border-radius: 10px;
    background-color: #68A45A;
    /* appearance: none; */
}

progress::-moz-progress-bar { background: #327E36; }
progress::-webkit-progress-value { background: #327E36; }

#playback-bar{
    display: none;
}

button{
    background-color: transparent;
    color: white;
    padding: 6px 20px;
    border-radius: 1em  ;
    font-size: 1.2em;

}
#download{
    display: flex;
    flex-direction: column  ;
    justify-content: center;
    align-items: center;
    gap: 10px;
} 
#online-signal {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: solid;
    margin-top: 10rem;

}

@keyframes simpie { 
  0%   { transform: rotate(5deg); filter: brightness(1.05) drop-shadow(0 0 2px #AFE0A1); }
  20%  { transform: rotate(-7deg); filter: brightness(0.95) drop-shadow(0 0 3px #327E36); }
  40%  { transform: rotate(3deg); filter: brightness(1.1) drop-shadow(0 0 4px #AFE0A1); }
  60%  { transform: rotate(-1deg); filter: brightness(1) drop-shadow(0 0 3px #327E36); }
  80%  { transform: rotate(9deg); filter: brightness(1.05) drop-shadow(0 0 2px #AFE0A1); }
  100% { transform: rotate(0deg); filter: brightness(1) drop-shadow(0 0 2px #327E36); }
}

@keyframes sonar {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.1;
    }
}

#beforeClick{
    position: fixed;
    color: white;
    font-size: 4em;
    animation: sonar .04s infinite ease-in-out;
    top: 50%;
    rotate: -20deg;
    
}


h1{
    text-align: center;
    font-family: 'lavish';
   font-size: 15vw;
    position: relative;
    /* animation: simpie 40s infinite ; */
     animation: rotate 6s linear infinite;
       animation: rota2 6s linear infinite;
    top: 5rem;
    filter: drop-shadow( 0.2em 1.75rem rgba(0,0,0,0.2));
}

@keyframes rotate {
    0%{transform: rotateY(360deg); 
}
    100%{transform: rotateY(0deg);
    }
}




#download {
    display: none; /* Inizialmente nascosto */
}

#content-list {
    display: none; /* Nascondi la lista dei contenuti */
}

#delete-container {
    display: none;
    text-align: center;
    margin: 10px 0;
}

#delete-button {
    background-color: #ff4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#delete-button:hover {
    background-color: #cc0000;
}