body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding-top: 174px; /* Adjust the value to match your header's height */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensures the header is above other content */

    background-color: #007F7F;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    margin: 0;
}

#theme-toggle {
    position: absolute;
    top: 10px; /* Adjust the top and right values as needed */
    right: 10px;

    background-color: #004C4C;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    margin: 18px 0 0 44px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
    font-weight: bold;
}

nav ul li a {
    color: #d9d9d9;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ffffff;
}

section {
    margin: 20px 0;
    padding: 20px;
}

.logo {
    max-width: 64px; /* Adjust the size as needed */
    height: auto;
    margin-right: 10px; /* Add some spacing between the logo and the bot name */
    vertical-align: middle; /* Align the logo vertically with the header text */
}

h1 {
    display: inline; /* Make the <h1> element inline so it's next to the logo */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.product {
    margin: 20px 0;
    padding: 20px;
    border-radius: 5px;
}

.product img {
    max-width: 100%;
    border-radius: 5px;
}

.product h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    display: inline;
}

.product p {
    font-size: 1rem;
}

.contact-info {
    margin: 20px 0;
    padding: 10px;
    text-align: center;
    font-weight: bolder;
}

.contact-item {
    border-radius: 5px;
    margin: 10px 0;
    font-size: 1rem;
}

.contact-item a {
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 10px 0;
}

.footer-link {
    color: #fff; /* White text color for links */
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline; /* Underline the links on hover */
}
