* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#00c3ff, black);
}

.parent {
    width: 290px;
    height: 300px;
    perspective: 1000px;
}

.card {
    height: 100%;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, rgb(0, 255, 214) 0%, rgb(8, 226, 226) 100%);
    transition: all 0.4s ease-in-out;
    transform-style: preserve-3d;  
}

.glass {
    position: absolute;
    inset: 8px;
    border-radius: 55px;
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    transform-style: preserve-3d;
}

.content {
    padding: 100px 60px 0 30px;
    transform: translate3d(0, 0, 26px)
}

.title {
    display: block;
    color:  #008489;
    font-weight: bold;
    font-size: 20px;
}

.text {
    display: block;
    color: #00897ec3;
    font-size: 15px;
    margin-top: 20px;
}

.bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 10px 12px;
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 26px); 
}

.view-more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 40%;
    transition: all 0.2s ease-in-out;
}

.bottom .view-more:hover {
  transform: translate3d(0, 0, 10px);
}

.view-more-button {
    background: none;
    border: none;
    color: #00b6c3;
    font-weight: bolder;
    font-size: 12px;
}

.svg {
    fill: none;
    stroke: #00bdc3;
    stroke-width: 3px;
    max-height: 15px;
}

.social-buttons-container {
    display: flex;
    gap: 10px;
    transform-style: preserve-3d;
}

.social-button {
    width: 30px;
    aspect-ratio: 1;
    padding: 5px;
    background: white;
    border-radius: 50%;
    border: none;
    display: grid;
    place-content: center;
    box-shadow: rgba(5, 71, 17, 0.5) 0px 7px 5px -5px; 
}

.logo {
    position: absolute;
    right: 0;
    top: 0;
    transform-style: preserve-3d;
}

.circle {
    display: block;
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 0;
    right: 0;
    background: rgba(0, 249, 203, 0.2);
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) -10px 10px 20px 0px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.circle1 {
    width: 170px;
    transform: translate3d(0, 0, 20px);
    top: 8px;
    right: 8px;
}

.circle2 {
    width: 140px;
    right: 10px;
    top: 10px;
    transition-delay: 0.4s;
    transform: translate3d(0, 0, 40px);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.circle3 {
    width: 110px;
    top: 17px;
    right: 17px;
    transition-delay: 0.8s;
    transform: translate3d(0, 0, 60px);
}

.circle4 {
    width: 80px;
    top: 23px;
    right: 23px;
    transition-delay: 1.2s;
    transform: translate3d(0, 0, 80px);
}

.parent:hover .card {
  transform: rotate3d(1, 1, 0, 30deg);
  box-shadow: rgba(5, 71, 17, 0.3) 30px 50px 25px -40px, rgba(5, 71, 17, 0.1) 0px 25px 30px 0px;
}

.parent:hover .card .bottom .social-buttons-container .social-button {
  transform: translate3d(0, 0, 50px);
  box-shadow: rgba(5, 71, 17, 0.2) -5px 20px 10px 0px;
}

.parent:hover .card .logo .circle2 {
  transform: translate3d(0, 0, 60px);
}

.parent:hover .card .logo .circle3 {
  transform: translate3d(0, 0, 80px);
}

.parent:hover .card .logo .circle4 {
  transform: translate3d(0, 0, 100px);
}

.bottom .social-buttons-container .social-button:first-child {
  transition: transform 0.2s ease-in-out 0.4s, box-shadow 0.2s ease-in-out 0.4s;
}

.bottom .social-buttons-container .social-button:nth-child(2) {
  transition: transform 0.2s ease-in-out 0.6s, box-shadow 0.2s ease-in-out 0.6s;
}

.bottom .social-buttons-container .social-button:nth-child(3) {
  transition: transform 0.2s ease-in-out 0.8s, box-shadow 0.2s ease-in-out 0.8s;
}

.bottom .social-buttons-container .social-button .svg {
  width: 15px;
  fill: #008982;
}

.bottom .social-buttons-container .social-button:hover {
  background: black;
  cursor: pointer;
}

.bottom .social-buttons-container .social-button:hover .svg {
  fill: white;
}

.glass{
  border-top-right-radius: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.349) 0%, rgba(255, 255, 255, 0.815) 100%);
  transform: translate3d(0px, 0px, 25px);
  transition: all 0.5s ease-in-out;
}

