.container {
    width: 400px;
  }
  .container ul {
    list-style: none;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .container li {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .container li:hover{
    cursor: pointer !important;
  }
  .arrow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    top: -60%;
    font-weight: 700;
    font-size: 1.5em;
    color: white;
  }
  .arrow > div {
    padding: 5px;

    background-color: rgba(0, 0, 0, 0.1);
  }
  .arrow > div:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
  }
