.rinna{
    height: 100%;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: end;
    position: relative;
}

.rinna video {
    max-height: 100%;
    width: auto;
    pointer-events: none;
}

@media (max-width: 540px) {
    .rinna video {
      max-width: 100%;
      height: auto;
      pointer-events: none;
      overflow: hidden;
  }
}


.rinna_play_btn {
    position: absolute;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(30deg, rgb(88, 98, 245) 20%, rgb(15, 41, 107) 80%);
    transition: all 0.3s ease-in-out 0s;
    box-shadow: rgba(193, 244, 246, 0.698) 0px 0px 0px 0px;
    animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse_play;
    border: 0;
    opacity: 1;
    left: 23%;
    top: 22%;
  }
  
  .rinna_play_btn:is(:hover, :focus) {
    transform: scale(1.2);
  }
  
  .play_icon {
    width: 0.8rem; /* Adjust the width to make it smaller */
  }

  @keyframes pulse_play {
    100% {
      box-shadow: 0 0 0 0.7rem rgba(193, 244, 246, 0);
    }
  }

@media (max-width: 992px) {
    .rinna_play_btn {
        left: 10%;
        top: 18%;
    }
}
  

  .rinna_credits {
    color: #fff;
    opacity: 0.5;
    position: absolute;
    font-size: 11px;
    right: 20%;
    pointer-events: none;
    margin: 0;
  }


  .rinna:hover .rinna_play_btn {
    opacity: 1;
  }
  
  .rinna_play_btn.hidden {
    opacity: 0;
  }