.header {
    background: linear-gradient(to bottom, rgb(223, 176, 255), rgba(255, 255, 255, 0.855));
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: x-large; 
  }
  
  .navH {
    background-color: transparent;
    
  }

  
  .navH ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center; 
  }
  
  .navH ul li {
    flex: 1 1 auto;
    text-align: center;
  }
  
  .logo {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .logo img {
    max-width: 200px; 
    height: auto;
  }
  .logo img:hover{
    animation: bounce 0.8s ease infinite;
  }
  
  .navH ul li a {
    text-decoration: none;
    color: #391147;
    padding: 10px; 
    transition: color 0.3s ease;
  }
  
  .navH ul li a:hover {
    color: #ffffff;
  }
  
  .footer {
    background-color: rgb(224, 176, 255);
    font-family: "Chalkduster, fantasy";
    font-weight: bold;
    
    padding: 1%;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.footer div {
    flex: 1 0 10em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1em;
}
.footer img {
    width: 25%;
    height: 25%;
}
.footer img:hover{
  animation: bounce 0.8s ease infinite;
}
.sectionunderheader{
  background-color: #673ab7;
  color: #fff;
  padding: 5px;
  text-align: center;
  animation: slideDown 1s ease;
} 

@media screen and (max-width: 768px) {
  .logo {
    text-align: center;
    margin-bottom: 5px;
  }
  .logo img {
    max-width:100px; 
    height: auto;
  }
  .navH{
    margin-left: 0;
  }
  .navH ul li {
    font-size: small;
  }
  .navH ul li a {
    padding: 6px; 
  }
 .footer{
  display: block;
 }
}