/* Import a Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Reset some basic elements */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Apply a font throughout */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Style the header */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
}

nav a:hover {
    background-color: #555;
    color: white;
}

/* Add some space to the content */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 15px;
    overflow: auto;
}

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
}
