/* body {
    font-size: 1rem;
} */

.fade-in {
    opacity: 0;
    transform: translateY(20px); /* Leggero spostamento verso il basso */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.loaded {
    opacity: 1;
    transform: translateY(0);
}

#back-home {
    color: white;
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 22;
}

.filter-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* font-size: 1rem; */
    /* width: 25vw; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.filter-menu button {
    font-weight: bold;
    color: rgb(160, 160, 160);
    padding: 10px 20px;
    border: none;
    /* border-radius: 5px; */
    background-color: transparent;
    cursor: pointer;
    transition: color 0.1s;
}
.filter-menu button.active {
    color: white;
    background-color: transparent;
}
ul {
    /* background-color: aquamarine; */
    /* border: var(--grigino) solid 1px; */
    /* font-size: 1rem; */
    cursor: auto;
    background-color: transparent;
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* margin-left: 8rem;
    margin-right: 8rem;
    margin-bottom: 8rem; */
    border-bottom: white solid 1px;
}
li {
    background-color: transparent;
    /* margin: 5px 0; */
    padding: 10px;
    /* background: #f4f4f4; */
    /* border: 1px solid #ddd;
    border-radius: 5px; */
    border-top: white solid 1px;
}
.hidden {
    display: none;
}

.bodyText {
    margin-bottom: 3rem;
    /* font-size: 1rem; */
}

@media only screen and (orientation: portrait) {
  /* .filter-menu {
    margin-left: 10vw;
    margin-right: 10vw;
  }

  ul {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .bodyText {
    margin-left: 3rem;
    margin-right: 3rem;
  } */
}