*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    --primary-green: rgb(202, 240, 47);
    font-size: 16px;
}

body{
    background-color: #000000;
    font-family: 'Jost', sans-serif;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Oswald', sans-serif;
}

span{
    font-size: 1em;
    font-family: inherit;
}
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card, .flip-card-intro {
    background-color: transparent;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    cursor: pointer;
    
  }

  .flip-card-intro{
    width: 300px;
    height: 300px;
    border-radius: 100%;
    box-shadow: 0 4px 8px rgba(255, 255, 255, .2);
  }
  
  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    background-color: #bbb;
    color: black;
  }
  
  /* Style the back side */
  .flip-card-back {
    background-color: var(--primary-green);;
    color: black;
    transform: rotateY(180deg);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px;
  }

  .flip-card-back h2{
    font-size: 1.4em;
  }

  .flip-card-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    padding: 40px 20px;
  }

  /* Style for the button */
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #ffffff;
  }

  .btn:hover {
    background-color: transparent;
    color: #ffffff;
  }

  /* Add responsive styles */
  @media (max-width: 992px) {
    .flip-card-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .flip-card-container {
      grid-template-columns: 1fr;
    }
  }

  .flip-card-intro-container{
    text-align: center;
    margin-bottom: 20px;
    color: white;
  }

  .flip-card-intro-container h2{
    font-size: 4.8em;
    margin-bottom: 10px;
  }

  section {
    padding: 40px 16px
  }