/* pulsanti*/

.pulsante {
    position: relative;
    cursor: pointer;
    padding: 15px;
    margin: 10px;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: #7C2F5D;
    color: #333;
    border: none;
    border-radius: 5px;
    background-color: white;
    -webkit-box-shadow: 
    0px 0px 0px 1px #4e8381 inset, 
    0px 0px 0px 2px #74b6b4 inset, 
    0px 4px 0px 0px #4a7c7b, 
    0px 5px 0px 0px #355655, 
    0px 5px 0px 0px rgba(0,0,0,.15);
    box-shadow: 
    0px 0px 0px 1px #434787 inset, 
    0px 0px 0px 2px rgb(29, 29, 58) inset, 
    0px 4px 0px 0px #434787, 
    0px 5px 0px 0px rgb(18, 18, 43), 
    0px 5px 0px 0px rgba(0,0,0,.15);
  }
  
  .pulsante:hover {              
    background-color: #7c2f5d;
  }
  .pulsante:active {
    background-color: #434787;
    -webkit-box-shadow: 
    0px 0px 0px 1px #589391 inset, 
    0px 0px 0px 2px #65a9a7 inset,
    0px 0px 0px 0px #4a7c7b, 
    0px 1px 0px 0px #355655, 
    0px 3px 0px 0px rgba(0,0,0,.15);
    box-shadow: 
    0px 0px 0px 1px #7c2f5d inset, 
    0px 0px 0px 2px #7c2f5d inset,
    0px 0px 0px 0px #791852, 
    0px 1px 0px 0px #5f063b, 
    0px 2px 0px 0px rgba(0,0,0,.15);
    top: 3px;
  }
  
  a:link {
          color: #fda604;
          font-style: italic;
          font-family: Georgia, 'Times New Roman', Times, serif;
          text-decoration: none;
          font-weight: bold;
        }
  a:visited {
    color:#5f3f04
  }


  /* contenitori */
  .riga {
    margin: 10px;
        padding: 2px;
        font-size:medium;
        display: flex;
        flex-direction:row;
        align-items: center;
        justify-content: space-around;
  }

  .colonna {
        margin: 10px;
        padding: 2px;
        max-width:max-content;
        font-size:medium;
        display: flex;
        flex-direction: column;
        align-items: center;
  }

  .concerti {
    color: #434787;
    margin: 10px;
    padding: 50px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 150%;
    font-weight: bolder;
    text-align: center;
    border: 5px solid #5f063b;
    border-radius: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    background-color: rgb(169, 195, 243);
  }

  /* per evidenziare delle immagini cliccabili che però non sono pulsanti */

  .Img_Button {
    position: relative;
    cursor: pointer;
    padding: 15px;
    margin: 10px;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: #7C2F5D;
    color: #333;
    border: none;
    border-radius: 20px;
    background-color: white;
    box-shadow: 
    0px 0px 0px 4px #1c2168 inset, 
    0px 0px 0px 2px rgb(29, 29, 58) inset, 
    0px 4px 6px 0px #1c2168, 
    0px 5px 0px 0px rgb(18, 18, 43), 
    0px 5px 0px 0px rgba(0,0,0,.15);
  }

  .Img_Button:hover {              
    background-color:rgb(169, 195, 243);
  }

  /* questo è solo un box che da un contorno porpora  con gli angoli smussati, non è fatto per mettere testo */
  .ContornoImmagine {
    position: relative;
    color: #434787;
    margin: 10px;
    padding: 15px;
    border: 5px solid #5f063b;
    border-radius: 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: fit-content;
    height: fit-content;
    background-color: white;
  }


/*  testo */


    .Accompagnamento {
      font-family: 'Comic Sans MS';
      font-size: large;
      text-indent: 20em each-line;
      text-align: justify;
      font-weight: normal;
      width: 400px;
      padding: 25px;
      
      }

      .Centrato {
        font-family: 'Comic Sans MS';
        font-size: large;
        text-indent: 20em each-line;
        text-align: center;
        font-weight: normal;
        width: 400px;
        padding: 25px;
        
        }

        .titoloConcerto {
          font-family: 'Comic Sans MS';
          font-size:xx-large;
          font-weight: bolder;
          font-style: italic;
          text-indent: 20em each-line;
          color: #434787;
          text-align: center;
          width: 400px;
          padding: 10px;
            
        }
        


        /* animazioni thanks to Chat GPT*/
        .animated-text {
          font-size: 40px;
          font-weight: bold;
          background: linear-gradient(to right, #5f063b, #ff6600);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: slideAnimation 3s infinite alternate;
      }
      
      @keyframes slideAnimation {
          0% {
              transform: translateX(0);
          }
          100% {
              transform: translateX(20%);
          }
      }