/* General body styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8d5e0;
    color: #333;
    text-align: center;
    overflow-x: hidden;
}

/* Main heading style */
h1 {
    color: #f1a7c3;
    margin-top: 50px;
    font-size: 36px;
    font-family: 'Dancing Script', cursive;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
}

/* Wrapper to ensure cakes stay side by side */
.cake-container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* Cake container styles */
.cake-container {
    width: 45%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

/* Cake images */
.cake img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;  /* Make sure it's clickable */
}

/* Hover effect for images */
.cake img:hover {
    transform: scale(1.05);
}

/* Styling for text under each image */
.cake p {
    font-size: 20px;
    color: #555;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    color: #ff6f61;
    font-weight: bold;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .cake-container {
        width: 90%;
        margin: 10px 0;
    }
}


