@charset "UTF-8";
    @import url(https://fonts.googleapis.com/css?family=Maven+Pro);
    body {
      font-family: "Maven Pro", sans-serif;
      color: #333;
      text-align: center;
    }

    h1 {
      margin-bottom: 0.5em;
    }

    .image-wrapper {
      position: relative;
      display: block;
      width: 350px;
      height: 100%;
      margin: 2em auto;
      overflow: hidden;
    }

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

    .image-wrapper:hover .pageflip {
      width: 180px;
      height: 180px;
      box-shadow: -5px -5px 40px black;
    }

    .pageflip {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      z-index: 1;
      width: 0;
      height: 0;
      bottom: 0;
      right: 0;
      background: linear-gradient(to right bottom, #aaaaaa 50%, #f2f0f0 51%);
      transition: all 0.6s;
      overflow: hidden;
    }

    .enter-text {
      color: white;
      font-size: 1.6em;
      font-weight: bold;
      opacity: 0;
      transition: opacity 0.3s;
      text-decoration: none;
      transform: translate(-40px, -30px); /* Adjust these values as needed */
    }

    /* Show "Enter" text on hover */
    .image-wrapper:hover .enter-text {
      opacity: 1;
    }