body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3rem;
    color: #333;
    margin: 20px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Styling for the Button */
button {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    padding: 8px 18px;
    margin: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

button:active {
    background-color: #397d3e;
}

img {
    width: 500px;
    height: auto;
}

img:hover {
    transform: scale(1.05);
}
