header {
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:60%;
    margin-top: -14;
    height:auto;
    max-width:100%
}
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.headerimage:hover {
    transform: rotate(0.5deg);
}
@media (max-width: 768px) {
.headerimage  {
    width: 100vw;
  }
}
body {
background-image: url(images/background5.png);
background-size: cover ;
background-repeat:repeat-y;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.imgnav {
  animation-name: fadeIn;
  animation-duration: 0.3s; /* Adjust the duration as needed (e.g., 1.5s) */
  animation-iteration-count: 1;
  animation-fill-mode: forwards; /* Ensures the element stays visible after the animation */
}
.headerimage {
  animation-name: fadeIn;
  animation-duration: 0.3s; /* Adjust the duration as needed (e.g., 1.5s) */
  animation-iteration-count: 1;
  animation-fill-mode: forwards; /* Ensures the element stays visible after the animation */
}
.big-div {
  animation-name: fadeIn;
  animation-duration: 0.3s; /* Adjust the duration as needed (e.g., 1.5s) */
  animation-iteration-count: 1;
  animation-fill-mode: forwards; /* Ensures the element stays visible after the animation */
}
.small-div {
  animation-name: fadeIn;
  animation-duration: 0.3s; /* Adjust the duration as needed (e.g., 1.5s) */
  animation-iteration-count: 1;
  animation-fill-mode: forwards; /* Ensures the element stays visible after the animation */
}

.imgnav {
  display: block;               /* block lets grid size naturally */
  justify-content: center;           /* center .navtop horizontally */
  width: 100%;
  padding: 0.5rem 0;
 background-image: url(images/backgroundtrnsp.png);
}
   
.navtop {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  justify-content: center;  /* center the grid as a whole */
  justify-items: center;    /* center items in each cell */
  gap: 1rem;
  padding: 0.5rem 0;
  margin: 0 auto;  
  transition: all 0.3s ease;
}
#birdopen {
    display:none;
}
.bird:hover #birdopen{
    display:block;
}
.bird:hover #birdclosed{
    display:none;}

    #houseon {
    display:none;
}
.house:hover #houseon{
    display:block;
}
.house:hover #houseoff{
    display:none;}
@media (max-width: 480px) {
    .navtop {
        display: flex;
         width:auto;
        height: 50px;
        flex-shrink: 0;
        margin-left: 20px;
        margin-right: 20px;
    }

}

.imgtxt {
  display: flex;
  flex-direction: column;
  align-items: center;    
  text-decoration: none;
  
}

.imgtxt img {
  height: 90px;
  width: auto;
    transition: transform 0.05s ease;
}
.imgtxt:hover img {
     transform: scale(1.1);
}
.imgtxt p {
  text-align: center;
  margin: 0.25rem 0 0; /* small spacing under image */
  font-size: 1rem;
  color: rgb(129, 152, 0);
}
@media (max-width: 768px) {
    .imgtxt p{
        font-size:10px;
    }
}
.imgtxt p {
  transition: color 0.2s ease;
}

.imgtxt:hover p {
  color: #1a3a3f; /* darker shade on hover */
  font-style: oblique;
}
.container {
  display: flex;
  gap: 10px;
 
}
.big-div { 
    flex: 3; 
background-color: #fffbec;
border: 4px solid rgba(127, 30, 121, 0.6);
border-radius: 4px;
padding: 15px;
margin-left: 10vw;
margin-top: 30px;
}
.small-div { 
    flex: 1;
    background-color: #fffbec;
    border: 4px solid rgba(0, 90, 175, 0.4);
border-radius: 2px;
padding: 5px;
margin-right: 10vw;
margin-top:30px;
 }
 @media (max-width: 768px) {
    .big-div {
        margin-left: 20px;
    }
    .small-div {
        margin-right:20px;
        max-width: 100;
    }
 }