*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.image_wrapper {
    position: relative;
}

.image {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    background: rgba(57, 57, 57, 0.5);

    /* center overlay text */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay_0 {
    right: 0;
    top: 0;
    padding: .5rem;
    margin: 4px;
    background: #f4208f;
    border-radius: 10px;
  }
