/* 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;
}

/* scrolling */
.scrollable-container {
    width: 100%; /* Set the container width to 100% */
    overflow-x: auto; /* Add a horizontal scrollbar when content overflows */
    white-space: nowrap; /* Prevent line breaks for the buttons */
}

.button-container {
    display: inline-block; /* Display buttons in a row */
    white-space: nowrap; /* Prevent line breaks for the buttons */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}
