  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #161616;
    min-height: 100vh;
    background-image: url('https://immagini-b1484.web.app/wp8448704.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
  }
  nav {
    z-index: 2;
  }
  ul.account{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 0 0.5rem 45%;
  }
  #myInput {
    padding: 12px 20px 12px 40px;
    border: 1px solid #ddd;
    width: auto;
  }
  #myUL {
    display: none;
    background-color: #ddd;
    border: 1px solid #7a7a7a;
    overflow-y: auto;
    max-height: 200px;
    margin-top: 5px;
  }
  #myUL li {
    cursor: pointer;
  }
  #myUL li:hover{
    background-color: #ddd;
  }
  #myUL::-webkit-scrollbar{
    display: none;
  }
  .event-bar {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.05);;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    position: relative;
    margin: 10px 0 0 0;
}
.event {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s;
    font-size: 18px;
    padding: 10px;
}
.event-bar:hover {
    animation-play-state: paused;
}

  table.responsive-table {
    border-radius: 10px;
    border-spacing: 10px;
    width: 100%;
  }
  table.responsive-table td{
    text-align: center;
    overflow: hidden;
  }
  @media screen and (min-width: 600px){
    ul.account{
      padding: 0 0 0.5rem 0;
    }
  }
  @media screen and (max-width: 600px) {
    table.responsive-table, table.responsive-table thead, table.responsive-table tbody, table.responsive-table th, table.responsive-table td, table.responsive-table tr {
      display: block;
    }
    table.responsive-table thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
    table.responsive-table tr { margin: 0 0 1rem 0; }
    table.responsive-table td {
      border: none;
      border-bottom: 1px solid #ddd;
    }
    table.responsive-table td:before {
      position: absolute;
      top: 0;
      left: 6px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
    }
}

  section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#da22ff, #9733ee);
    clip-path: circle(30% at right 70%);
  }
  section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#e55d87, #5fc3e4);
    clip-path: circle(20% at 10% 10%);
  }
  .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
    width: 100%;
  }
  .container .card {
    position: relative;
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    margin: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
  }
  .container .card .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s;
  }
  .container .card:hover .content {
    transform: translateY(-20px);
  }
  .container .card .content .imgBx {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
  }
  .imgBx {
    width: 100%;
    height: 100%;
  }
  .container .card .content .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container .card .content .contentBx h3 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 10px;
    line-height: 1.1em;
  }
  .container .card .content .contentBx h3 span {
    font-size: 12px;
    font-weight: 300;
    text-transform: initial;
  }
  .container .card .sci {
    position: absolute;
    bottom: 50px;
    display: flex;
  }
  .container .card .sci li {
    list-style: none;
    margin: 0 10px;
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
  }
  .container .card:hover .sci li {
    transform: translateY(0px);
    opacity: 1;
  }
  .container .card .sci li a {
    color: #fff;
    font-size: 20px;
  }
  #myUL {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  #myUL li a {
    padding: 12px;
    text-decoration: none;
    color: black;
    display: block
  }
  #myUL li a:hover {
    background-color: #eee;
  }
  .footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
  }