body{
    margin: 0;
    padding: 0;
}
.top   {
    height:300px ;
}
.banner{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 300px;
    background-image: url(../images/Muse2.png);
    background-clip: content-box;
    color: #ccc;

}
.overlay{
    background-color: rgba(0,0,0,.7);
    padding: 20px;
    border-radius: 5px;

}
.h1{
    text-align: center;
}
a{
    color: #3f7e44;
    text-decoration: none;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
    /* justify-content: space-between;  */
    margin-top: 20px; 
    font-family: sans-serif;
    
  }
  
  .card {
    width: 100%; 
    max-width: 250px;
    padding: 10px;
    height: 300px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
  }
  
  .card img {
    width: 100%;
    height: 250px; 
    object-fit: cover; /* Maintain aspect ratio */
  }
  .card video{
    width: 100%;
    height: 300px; 
    object-fit: cover; /* Maintain aspect ratio */

  }
  .card h2 {
    margin-top: 10px;
    font-weight: bold;
  }
  
  .card p {
    margin-top: 10px;
    line-height: 1.5;
  }