.container {
  width: 100%;
  /* margin: 0 auto; */
}

/* Header Banner Styles */

.mission-statement {
  text-align: right;
  font-family: "Pacifico", cursive;
}

.mission-statement h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #da1c5c;
  font-size: 50px;
  font-family: "Pacifico", cursive;
}

.mission-statement p {
  font-size: 1.2em;
  font-family: "Pacifico", cursive;
}

/* Footer Styles */
.footer {
  background-color: #ffffff;
  color: #da1c5c;
  width: 100%;
  /* position: fixed;
    bottom: 0; */
  font-family: "Poppins", cursive;
  text-align: center; /* Add text-align center */
}

#typewriterElement.innerHTML {
  color: #da1c5c;
  font-size: 22px;
}

p.innerHTML {
  color: #da1c5c;
  font-size: 22px;
}

#typewriter {
  font-size: 18px;
  max-width: calc(100% - 100px); /* 100px = 50px from each side */
  margin: 0 50px; /* Ensures 50px space from both left and right edges */
  box-sizing: border-box; /* Includes padding and border in the element's total width and height */
}

.pgui-home-row {
    position: relative; /* Ensure proper stacking context */
}

.pgui-home-item {
    padding: 10px;
    background-color: lightpink;
    transition: transform 0.2s; /* Add transition for smooth effect */
    position: relative; /* Position relative for absolute positioning of description */
    z-index: 1; /* Ensure the button is at a higher z-index than the description */
}

.pgui-home-item a {
    display: block;
    text-decoration: none;
    color: black;
    position: relative; /* Set position to relative for z-index */
}

.pgui-home-item:hover {
    background-color: rgb(255, 149, 0);
    transform: scale(1.05); /* Increase scale on hover */
}

.pgui-description {
    position: absolute;
    top: calc(100% + 5px); /* Position the description just below the button */
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    opacity: 0; /* Hide description by default */
    transition: opacity 0.3s, color 0.3s; /* Add transition for smooth effect */
    z-index: 2; /* Move description above other elements */
}

.pgui-home-item:hover .pgui-description {
    opacity: 1; /* Show description on hover */
}

.pgui-home-item:hover a {
    color: rgb(255, 255, 255); /* Change color of button text on hover */
}

.fa {
    margin-right: 5px; /* Adjust spacing between icon and text */
}

/* button */
.pgui-home-item {
    border: 1px solid #000000; /* Light orange border */
    border-radius: 5px; /* Rounded corners */
}

/* Initially hide child buttons */
.pgui-home-col {
    display: block;
}

/* Apply this class to hide child buttons */
.hide {
    display: none;
}

.pgui-home-col {
    overflow: hidden;
    max-height: 0; /* Set initial max-height to 0 for hiding */
    transition: max-height 0.35s ease; /* Apply transition for height change */
}

.pgui-home-col.show {
    max-height: 1000px; /* Set a large value to reveal */
}

.collapse-button {
    margin-bottom: 25px;
}

.hide-buttons .pgui-home-col {
    height: 0;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.hide-buttons .pgui-home-col.show {
    height: auto;
}

