body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffeea5;
    margin: 0;
    flex-direction: column;
}

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


#clickableImage {
    cursor: pointer;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}


.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: #654518;  
    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-left: 89px; 
}


#packageButton:hover {
    background-color: #4b4322;  
    transform: scale(1.05);
}

