.card {
    position: relative;
    width: 400px;
    height: 260px;
    border-radius: 10px;
    z-index: 1111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 30px #575757, -10px -10px 30px #919191;
    margin-top: 10%;
  }
  
  .bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 390px;
    height: 250px;
    z-index: 2;
    background: rgba(244, 244, 244, 0.165);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
  }
  