
/* Style the foreground image and text container */
#container {
    position: relative;
    margin: 100px auto;
    width: 90%;
    max-width: 900px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  #container p a {
    color: #666;
  }
  
  #container p a:hover {
    color: #00b0b9;
  }
  
  #foreground {
    margin-bottom: 30px;
  }
  
  #foreground img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0px;
  }
   h2 {
    font-size: 20px;
    font-weight: medium;
    color: #666;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 40px;
  }
  





/* Style the Square Buy now button */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .button-wrapper {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
  }
  
  .button {
    display: inline-block;
    font-size: 18px;
    line-height: 48px;
    height: 48px;
    color: #ffffff;
    min-width: 212px;
    background-color: #000000;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1) inset;
    border-radius: 6px;
  
    /* Remove underline */
    text-decoration: none;
  
    /* Animation */
    animation-name: pulsate;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  
  @keyframes pulsate {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.1);
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  /* Media query for small screen sizes */
  @media (max-width: 800px) {
    .button-container {
      flex-direction: column;
      align-items: center;
    }
  
    .button {
      margin-bottom: 10px;
      margin-left: 10px;
      margin-right: 10px;
      /* Add desired padding value */
    }
  }