
  
  
  .main-content {
      flex: 1;
      display: flex;
      justify-content: center;
      /* change from align-items: center; */
      align-items: flex-start; /* Start from the top */
  } 

  .main-content header {
      font-size: 1.7em;
      transform: translateY(-60%); /* Moves the header up by 25% of its own height */
  }

  #headerLink {
      color: white;            /* To keep the text color as white */
      text-decoration: none;   /* To remove the underline */
      transition: font-size 0.3s; /* For smooth transition */
  }

  #headerLink:hover {
      font-size: 1.2em;        /* Increase the size on hover. Adjust the multiplier as you see fit. */
  }


  #idContainer button {
    background-color: transparent; /* Default non-hover background */
    padding: 10px;
    margin: 10px 0; /* Add some margin around buttons if needed */
    box-sizing: border-box;
}

#idContainer button:hover {
    background-color: #aa8e5f;
    cursor: pointer;
}

#idContainer textarea, 
#idContainer input {
    margin-bottom: 20px;
    box-sizing: border-box;
}





footer a {
display: inline-block;  /* Make it block-level to add padding */
padding: 5px 10px;  /* Padding for the button appearance */
margin: 0 5px;  /* Spacing between links */
color: white;  /* Text color */
border: 1px solid white;  /* White border */
text-decoration: none;  /* Remove the underline */
border-radius: 5px;  /* Rounded corners for the buttons */
transition: background-color 0.3s ease;  /* Smooth transition for hover effect */
}

footer a:hover {
    color: #82693e;  /* Text color on hover */
}

#idContainer {
    background-color: transparent; /* Or any other desired color */
}

#promoText {
    cursor: pointer;
    padding-top: 70px;
    padding: 10px 15px;
    color: white; /* Text color */
    background-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: all 0.3s ease;
}



@keyframes scaleUpDown {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}

/* Initial state of the image with animation set to run once */
#promoText img {
    width: 80%;
    animation: scaleUpDown 1s ease none; /* 'none' makes sure the animation doesn't affect the final state */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

/* Hover effect on the images */
#promoText:hover img {
    transform: scale(1.1); /* Scale up the image slightly on hover */
}
/* Class for the animation */
.animate-scale-up-down {
    animation: scaleUpDown 1s ease forwards; /* Animation lasts 1 second */
}

/* Hover effect on the container */
#promoText:hover img, #promoText:hover span {
    transform: scale(1.1); /* Scale up both image and text on hover */
}

#promoText img, #promoText span {
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}
#productsBtn {
    width: auto;
    margin: 0 auto;
    padding: 15px 60px;
    background-color: #aa8e5f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
    display: block;
    align-items: center;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 990px) {
    #productsBtn {
        font-size: 50px;
        width: 50vw;
        height: 8vh;
        padding: 0;
        bottom: 7%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.pulsing {
    animation: pulse 0.75s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
    }
}