.movie-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  .movie-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 345px;
    width: 230px;
    position: relative;

    box-shadow: 0 3px 10px #00000026,0 5px 25px #00000040;
    border-radius: 8px;
    overflow: hidden;

    .border {
      display: flex;
      height: 100%;
      width: 100%;
      position: absolute;

      border-radius: 2px;
      box-shadow: inset 0 0 1px #def;
      transition: box-shadow .15s linear;
    }

    .overlay {
      position: absolute;
      opacity: 0;
      transition: opacity .1s linear;
    }

    img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  }

  .movie-card:hover {
    cursor: pointer;

    .border {
      border-radius: inherit;
      box-shadow: inset 0 0 0 5px #00E054;
      transition: box-shadow .15s linear;
    }

    .overlay {
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-sizing: border-box;
      gap: 1rem;

      height: 265px;
      width: 150px;
      position: absolute;
      bottom: 2rem;

      background-color: #000000b0;
      border-radius: 2px;
      color: azure;
      font-family: Open Sans;
      font-size: 2rem;
      font-weight: light;

      padding: 2.5rem 2rem;
      opacity: 100%;
      transition: opacity .1s linear;

      .icon-container {
        display: flex;
        flex-direction: column;
        align-items: center;

        .icon {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 38px;
          width: 45px;
          position: inherit;
          opacity: 100%;
        }

        .icon-views {
          background-image: url(../../images/icon-views.svg);
          background-repeat: no-repeat;
        }

        .icon-likes {
          background-image: url(../../images/icon-likes.svg);
          background-repeat: no-repeat;
        }
      }
    }
  }
}