html {
    height: 100%;
    width: 100%;
  }
  
  body {
    background-image: url('https://cdn.wallpapersafari.com/44/72/B4lfW3.jpg');
    background-repeat: no-repeat;;
    filter: blur(0px);
    background-size: cover;
    backdrop-filter: blur(1px);
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
  } 
  wrapper {
  width: 100%;
  height: 70vh;
  display: flex;
}
  body .blocks {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: baseline;
  }
  body .blocks .block {
    position: relative;
    display: block;
    width: 200px;
    height: 200px;
    margin: 20px;
    transform: perspective(600px) rotateY(-30deg);
    transition: transform 0.3s;
  }
  body .blocks .block img {
    width: auto;
    max-width: 100%;
  }
  body .blocks .block .overlay {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgba(0, 0, 0, 0.5);
    top: 0%;
    bottom: 49%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transform: translate3d(0, 0, 0);
  }
  body .blocks .block .overlay img {
    width: auto;
    max-width: 40%;
  }
  body .blocks .block.hover, body .blocks .block:hover {
    transform: rotateY(0);
    cursor: pointer;
  }
  body .blocks .block.hover .overlay, body .blocks .block:hover .overlay {
    opacity: 1;
  }
  
  a {
    text-decoration: none;
    color: rgb(244, 18, 18);
  }
  
  .cta {
    position: fixed;
    text-align: center;
    margin: auto;
    padding: 1px;
    transition: all 0.2s ease;
  }
  
  .cta:before {
    content: "";
    text-align: center;
    position: absolute;
    top: 0%;
    left: 0%;
    display: block;
    border-end-end-radius: 100%;
    background: rgba(242, 235, 41, 0.286);
    width: 90px;
    height: 36px;
    transition: all 0.3s ease;
  }
  
  .cta span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    vertical-align: middle;
  }
  
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: rgb(0, 0, 0);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.9s ease;
  }
  
  .cta:hover:before {
    width: 150%;
    background: #f1f127;
    text-size-adjust: 40px;
  }
  
  .cta:hover svg {
    transform: translateX(0);
  }
  
  .cta:active {
    transform: scale(0.96);
  }