 /* card section*/
 .s1{
  width: 100vw;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  background-image: url(../Images/AdobeStock_598605178.jpeg);
  background-size: 100vw;
  overflow: hidden;
  padding:50px;
 }
 /*card 1*/
  
  .card {
    display: grid;
    grid-template-columns: 300px;
    grid-auto-rows: 210px 210px;
    grid-template-areas: "image" "text";
  
    font-family: 'Courier New', Courier, monospace;
    border-radius: 18px;
    background: #616161;
    box-shadow: 5px 5px 15px;
    text-align: center;
    line-height: 1.75;
    text-shadow: -2px 2px 6px #000000;
  
    transition: 0.5s ease-in-out;
    margin: 40px;
  }
  .card-image{
    grid-area: image;
    background: url(../Images/Gallery/P8060010.JPG);
    background-size: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    
  }
  .card-text{
    grid-area: text;
    margin: 40px;
  }  
  
  .card:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }  
     
  .card:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }  
  
  /*card 2*/
  
  .card2 {
    display: grid;
    grid-template-columns: 300px;
    grid-auto-rows: 210px 210px;
    grid-template-areas: "image" "text";
  
    font-family: 'Courier New', Courier, monospace;
    border-radius: 18px;
    background: #616161;
    box-shadow: 5px 5px 15px;
    text-align: center;
    line-height: 1.75;
    text-shadow: -2px 2px 6px #000000;
  
    transition: 0.5s ease-in-out;
    margin: 40px;
  }
  .card-image2{
    grid-area: image;
    background: url(../Images/Gallery/me.jpg);
    background-size: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  
    
  
  }
  .card-text2{
    grid-area: text;
    margin: 2rem;
    margin-top: 5rem;
  }  
  .card-text p{
    font-size: 1.9rem;
  }
  
  
  .card2:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }  
  
  /*card 3*/
  
  .card3 {
    display: grid;
    grid-template-columns: 300px;
    grid-auto-rows: 210px 210px;
    grid-template-areas: "image" "text";
  
    font-family: 'Courier New', Courier, monospace;
    border-radius: 18px;
    background: #616161;
    box-shadow: 5px 5px 15px;
    text-align: center;
    line-height: 1.75;
    text-shadow: -2px 2px 6px #000000;
  
    transition: 0.5s ease-in-out;
    margin: 40px;
    
  }
  .card-image3{
    grid-area: image;
    background: url(../Images/Gallery/bs\ logo\ badge.png);
    background-size: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  
  
  }
  .card-text3{
    grid-area: text;
    margin: 10px;
  }  
  
  .card3:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }  
 

  .welcome {
    background-image: url(../Images/AdobeStock_598605178.jpeg);
    background-size: cover;
  } 


@media only screen and (max-width: 600px) {
 
 
    
    }
  