/* styles.css */
body {
    font-family: 'Gabarito', sans-serif;
    background-color: #333; /* Change the background color to a dark shade */
    color: #fff; /* Change the text color to light */
    margin: 0;
    padding: 0;
}

header {
    background-color: #222; /* Darken the header background */
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin: 0 20px;
}

/* Style unvisited & visited links to be white */
nav a, nav a:visited {
    font-family: 'Gabarito', sans-serif;
    color: #fff; /* Change link color to white */
    text-decoration: none;
}

.main-content, .services, .contact {
    background-color: #444; /* Darken the background color of sections */
    margin: 20px;
    padding: 20px;
    font-family: 'Gabarito', sans-serif;
}

footer {
    background-color: #222; /* Darken the footer background */
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Gabarito', sans-serif;
}
