/* body {
    background: #fdf6e3;
    font-family: 'Comic Sans MS', cursive, sans-serif;
} */

.instagram-container{
    padding: 50px 100px 100px 100px;
    background: linear-gradient(180deg, #fff5e4, #de490d);
}

.card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.card-title {
    color: #ff6f61;
    font-weight: bold;
    text-align: center;
}

.card-body {
    background: #fff8dc;
}

.instagram-frame {
    position: relative;
    padding-bottom: 120%;
    /* Aspect ratio for Instagram post */
    height: 0;
    overflow: hidden;
}

.instagram-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}