/* Resetting default browser styles */
body, h1, h2, h3, p, ul, ol, li, figure, figcaption, blockquote {
    margin: 0;
    padding: 0;
}

/* Set default font family and size */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
}

/* Container */
.container {
    width: 100%;
    margin: 0 auto; /* Center align */
    
}



/* Navigation */
nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
  
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 16px;
    text-align: center;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Video Embeds */
iframe, embed, object, video {
    max-width: 100%;
}

/* Responsive Images in Figures */
figure {
    margin: 0;
}

figure img {
    width: 100%;
}

figcaption {
    text-align: center;
    font-style: italic;
}


 /* Media queries for mobile devices */
 @media only screen and (max-width: 767px) and (orientation: portrait) {
    /* Styles for mobile devices in portrait orientation */

    footer {
        background-color: #333;
        color: #fff;
        padding: 5px;
        text-align: center;
        font-size: 14px;
    }

 }