/* Reset some default styles to ensure consistency */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Apply a background color and set font styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

/* Style the header/navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style the hero section */
#hero {
    text-align: center;
    padding: 80px 0;
    background-color: #4285f4;
    color: #fff;
}

#hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Style the about and contact sections */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#about h2,
#contact h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* Style the footer */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
}

/* Google Font - Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Apply Roboto font to all text */
body, h1, h2, p {
    font-family: 'Roboto', sans-serif;
}
