*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: blanchedalmond;
    color: black;
    padding: 20px;
}

h1{
    text-align: center;
    margin-bottom: 8px;
}

h3{
    text-align: center;
    font-weight: normal;
    color: plum;
    margin-bottom: 20px;
}

p{
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}

.gallery{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.image-box{
    width: 100%;
    max-width: 220px;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.image-box:active{
    transform: scale(0.97);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.image-box img{
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.image-box p{
    margin-top: 10px;
    font-size: 14px;
    color: grey;
}

/* In addition to JS part */
.image-box.liked{
    border: 2px solid hotpink;
    transform: scale(1.03);
}

.card-link{
    text-decoration:none;
    color: inherit;
}