.main-title {
    font-size: 41px;
    line-height: 1.2; /* Adjust line height as needed */
    /* Add any additional styling needed */
}

/* New class for the gray text */
.gray-text {
    color: #3a3a3a; /* Gray color */
}

/* Style for the navbar */
.navbar {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the navbar container */
    padding: 0; /* Removed padding here */
    color: #f2f2f2;
    font-family: "Oswald", sans-serif;
}

/* New style for the navbar container to center content with max-width */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 980px;
    padding: 0 0px; /* You can adjust the horizontal padding here */
}

.navbar-right {
    display: flex; /* This will make sure that "Tools" and "About" are aligned next to each other */
}

/* Style for navbar links */
.navbar a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    background-color: #000; /* Black background */
    display: block;
}

/* Change color on hover */
.navbar a:hover {
    background-color: #505050; /* Darker gray for hover */
    color: white;
}

/* Style for the dropdown menu within the navbar */
.dropdown {
    position: relative;
    display: inline-block; /* Aligns dropdown inline with other navbar items */
}

.dropdown .dropbtn {
    font-size: 20px;
    border: none;
    outline: none;
    color: white; /* Corrected color value */
    background-color: #000; /* Black background */
    padding: 14px 16px;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
    align-items: center;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000; /* Black background for dropdown */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white; /* White text for dropdown links */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #505050; /* Darker gray for hover */
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

