body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0e1ad;
    margin: 0;
    flex-direction: column; /* Ensures the button is above the image */
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Default image styling */
#clickableImage {
    cursor: pointer;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

/* Different sizes for each image */
.image1 {
    width: 300px;
    height: auto;
}

.image2 {
    width: 400px;
    height: auto;
}

.image3 {
    width: 500px;
    height: auto;
}

/* Package Button */
#packageButton {
    font-family: 'Futura', sans-serif;
    font-style: italic;
    font-size: 18px;
    font-weight: bold;
    background-color: #711f32; /* Blue color */
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    text-decoration: none;
    margin-top: 18px;
    margin-left: 44px; /* Adds spacing between the button and the image */
}

/* Hover Effect */
#packageButton:hover {
    background-color: #814b4b; /* Darker blue */
    transform: scale(1.05);
}