 body{
    margin: 0;
    font-family: Arial,sans-serif;
    background: linear-gradient(to right, #4caf50, #2e7d32);
    color: white;
    text-align: center;
}
.container{
    padding: 50px;
}
.image{
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.image:hover{
    transform: scale(1.05);
}
.button-container{
    margin-top: 20px;
}
