main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.fade {
    animation-name: fade;
    animation-duration: 1s;
}
#slideshow-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

@keyframes fade {
    from { opacity: .4 } 
    to { opacity: 1 }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f8e9d6;
    text-align: center;
    padding: 20px;
}

main {
    padding: 20px;
}

footer {
    background-color: #f8e9d6;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

img {
    border: 1px solid #ccc;
    border-radius: 50%;
    margin: 10px;
    width: 100px; /* Default width */
    height: 100px; /* Default height */
}

/* Media query for larger screens */
@media only screen and (min-width: 768px) {
    .cake-card img {
        width: 150px; /* Larger width */
        height: 150px; /* Larger height */
    }
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
    img {
        width: 80px; /* Smaller width */
        height: 80px; /* Smaller height */
    }
}

/* Media query for very small screens */
@media only screen and (max-width: 400px) {
    img {
        width: 50px; /* Smallest width */
        height: 50px; /* Smallest height */
    }
}

/* Hide all slides by default */
.cake-slide {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the next button to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Position the "prev" button to the left */
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

/* Slideshow container */
#slideshow-container {
    position: relative;
    max-width: 100%;
}

/* Slide images */
.cake-slide img {
    width: 100%;
    height: auto;
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
    /* Adjust image size for smaller screens */
    .cake-slide img {
        width: 80%;
        margin: 0 auto; /* Center the images */
    }
}
