/* put your own styles to customize and override the theme */
.py-bck{
    background-image: url('../imgages/header-hero.jpg'); /* Add the path to your image */
  background-size: cover; /* Make the background cover the entire area */
  background-position: center center; /* Position the background in the center */
  background-repeat: no-repeat; 
  
}
.card-footer{
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    cursor: pointer;
    transition: background 0.5s ease-in-out;
}
.card-footer:hover {
    background: linear-gradient(to right, #4facfe, #00f2fe);
}
