body {
    font-family: 'Helvetica'; /* Change the font-family to 'Baloo Bhai' */
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: url('background.png'); /* Use 'background.png' as the background image */
    background-size: cover;
    background-position: center;
    animation: backgroundMove 20s infinite alternate;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    position: relative;

}

/* Add contrast for the text on a semi-transparent black background */
h1, h2, p, ul, li {
    color: #fff; /* White text color */
    padding: 2px; /* Add some padding to improve readability */
    list-style-type: none;
    font-size: 30px;

}

h1 {
    font-size: 38px;

}

/* Rest of your existing CSS remains unchanged */
