/* General body styles */
body {
    padding: 20px;
    font-family: Arial, sans-serif;
    background-image: url('bg.png');
    background-size: auto; /* Keep the original size of the background image */
    background-position: center;
    background-repeat: repeat; /* Tile the background image */
    color: white; /* Ensure text is visible on the background */
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Mobile warning banner styles */
.mobile-warning {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0; /* Move to the bottom of the screen */
    left: 0;
    width: 100%;
    background-color: #f44336; /* Red background */
    color: white;
    text-align: center;
    padding: 10px;
    box-sizing: border-box; /* Ensure padding is included in width */
    z-index: 1000; /* Ensure it's above other content */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', 'Helvetica', 'sans-serif'; /* Use sans-serif font */
}

/* Flex container for centering content */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

/* Header styles */
h1 {
    text-align: center;
    margin: 0;
}

h2 {
    text-align: center;
}