.menu {
    position: fixed;
    left: 50%;
    top: 4%;
    width: 30vw;
    transform: translateX(-50%);
    background-color: rgb(37, 1, 67);
    padding: 10px;
    color: white;
    backdrop-filter: blur(10px);
    font-size: 18px;
    border-radius: 12px;
    z-index: 998;
    box-shadow: 0px 0px 10px white;
    border: 2px solid white;
    transition: 0.7s cubic-bezier(0.68, -0.55, 0.16, 1.2);
    padding:10px;
    padding-right:10px;
  }
  .grid {
    display: flex;
  }
  .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    float:right;
  }
  .icon img {
    width: 50px;
  }
  .home {
    border-radius: 50%;
    cursor: pointer;
  }
  .movie {
    position: absolute;
    right: 50px;
    cursor: pointer;
    font-size:30px;
  }
  
  .settings {
    transition: 0.5s;
    right: 5px;
    position: absolute;
    cursor: pointer;
    font-size:30px;
  }
  
  .settings:hover {
    transform: rotate(-180deg);
  }
  .dropdown {
    position:absolute;
    cursor: pointer;
    font-size: 25px;
    right:0;
    transition:0.3s;
    border-radius:10px;
}

  .dropdown-content {
    position: absolute;
    top: 50px;
    background-color: black;
    min-width: 150px;
    border-radius: 8px;
    padding: 5px;
    z-index: 999;
    right: 0;
    overflow: hidden;
    font-size:15px;
}

.dropdown-content a {
    margin:5px;
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transition:0.3s ease-in-out;
    border-radius:10px;
    background-color:rgba(107, 63, 169, 1);
}

.dropdown-content a:hover {
    background-color: rgb(37, 1, 67);
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
