/* Keep existing styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
}

button {
    background-color: #0077C4;
    color: white;
    padding: 10px 10px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 8px;
    /* New styles for background images */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-top: 10px;    
    display: inline-block;
    max-height: 65vh;
}

button:hover {
    background-color: #0076c493;
}

