body {
    padding-top: 80px;
    background: #4676FF;
    background: linear-gradient(90deg, rgba(70, 118, 255, 1) 0%, rgba(129, 194, 255, 1) 100%);
    box-sizing: border-box;
    font-family: "Roboto", Arial, sans-serif;
}

h1 {
    border: 2px solid #333;
    border-radius: 30px;
    background-color: #f6f6f6;
    padding: 20px; 
    text-align: center;
    margin: 20px;
}
/* .card-body {
    background: #f6f6f6;
} */

.card-body {
  background: #f6f6f6;
  overflow: hidden; /* keeps zoomed image inside the card */
  display: flex;
  justify-content: center;
  align-items: center;
}


.custom-card {
    background: #f6f6f6;
    border: 6px solid #ffd230;
    border-radius: 0.75rem; 
    /* box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15); */
}

.quote-box{
    background: #416ca3;
    width: 90%;
    position: absolute;
    /* top: 25%; */
    left: 50%;
    transform: translateX(-50%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.7);
}

.quote-box .center {
    width: 100%;
    margin-top: 50px;
    display: flex;
} 

.art-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px; /* optional rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.art-image:hover {
  transform: scale(1.5);
}

