
/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
}
    .container {
        display: flex;
        align-items: flex-end;
    }
    .container img {
        margin-top: 40px;
        margin-right: 20px;
        margin-bottom: 0px;
        max-width: 200px;
    }
    .container iframe {
        width: 400px;
        height: 225px;
    }
    footer {
        background-image: url('images/footer_background.jpg'); /* Add your footer background image */
        background-size: cover;
        background-repeat: no-repeat;
        padding: 20px;
        text-align: center;
    }
    footer p {
        display: flex;
        align-items: center;
        justify-content: left;
    }
    footer p img {
        margin-right: 10px;
        height: 1em; /* Make the icon height same as the text size */
    }
    footer a {
        text-decoration: none; /* Remove underline from link */
        color: inherit; /* Inherit the color of the surrounding text */
        margin-left: 10px; /* Add margin to separate from the previous text */
    }
    .no-left-margin {
        margin-left: 0;
    }
    /* Add this to your style.css file */

   footer p a img {
   	transition: transform 0.3s ease;
    }
    footer p a:hover img {
        transform: scale(1.2);
    }

/* Add media queries for responsive design */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    p {
        font-size: 1em;
    }

    table {
        width: 100%;
        display: block;
        overflow-x: auto;
    }

    img {
        width: 100%;
        height: auto;
    }

    iframe {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.25em;
    }

    p {
        font-size: 0.875em;
    }
}
