*{
  margin: 0;
  font-family: "Poppins",sans-serif;
  scroll-behavior: smooth;
 justify-content: space-evenly;
}
body{
  backdrop-filter: contrast(1);
  background: fixed;
  background-position-x: center;
  background-image: url(https://i.ibb.co/VH2Nm08/logo.jpg);
  min-height: 100vh;
  background-size: cover;
  animation: fly-in 1s ease-in-out;
  animation-delay: 1s; /* Adjust the delay time as needed */
  animation-fill-mode: both;
}
.flip-card {
    background-color: transparent;
    width: 80%;
    height: 60vh;
    perspective: 1000px;
    margin-top: 10%;
    margin-left: 10%;
  }
  
  .flip-card-inner {
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    background-color: #bbb;
    color: black;
  }
  .flip-card-front h2{
    margin-top: 30%;
    font-size: 30px;
  }
  
  .flip-card-front button{
    margin-top: 30%;
    font-size: 20px;
  }
  .flip-card-back {
    background-color: #bbb;
    color: black;
  }
  .flip-card-back h2{
    color: black;
    margin-top: 30%;
    font-size: 30px;
  }
  
  .flip-card-back button{
    margin-top: 10%;
    font-size: 20px;
  }
  .flip-card-back {
    color: white;
    transform: rotateY(180deg);
  }