body {
    font-family: 'Arial', sans-serif;
    background: #FAF3DD;
}

.content {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

p {
    color: #555;
    line-height: 1.5;
    font-size: 16px;
    text-align: center;
}

.fun-box {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fun-box:hover {
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.fun-box img.preview {
    max-width: 100%;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF6B6B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #FF3F3F;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
}

.gallery {
    display: none;
    margin-top: 30px;
}

.gallery img {
    max-width: 100%;
    display: block;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.fun-box {
    display: flex;
    align-items: center;
}

.fun-box img.preview {
    max-width: 150px;  /* Adjust this value to desired size */
    margin-right: 20px;
}

.fun-box h3, .fun-box p.overview {
    margin: 0;
}

.overview {
    flex: 1;
}
.back-to-cats {
    display: inline-block;
    background-color: #FF6B6B;
    border-radius: 50px; /* Make it more pill-shaped */
    padding: 10px 25px;
    color: white;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.back-to-cats:hover {
    background-color: #FF3F3F;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
}

/* Let's add a playful paw animation on hover */
.back-to-cats::before {
    content: "🐾";
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.back-to-cats:hover::before {
    left: 10px;
}
