body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    background-color: #ffffff;
    color: #333;
}

header {
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

ol {
    padding-left: 20px;
}

li {
    font-size: 18px;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f8f8;
}

footer p {
    font-size: 14px;
    color: #777;
}


.roundbutton {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;

}

.roundbutton:hover {
    background-color: #45a049;
}

.main-navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff; /* Clean white background color */
    color: #000000; /* Black text color */
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.site-name {
    font-size: 30px; /* Adjust the font size as needed */
    font-weight: bold;
    margin-right: auto; /* Push the site name to the left */
}

#site-logo {
    max-height: 60px;

}

#profile-icon {
    max-height: 60px;
    margin-right: 10px;
    padding-left: 10px;

}

.navbar-section-middle {
    display: none;

}

.navbar-section {
    display: flex;

}




.nav-link {
    text-decoration: none;
    color: #000000; /* Black text color */

    margin-right: 20px;
    font-size: 16px;
}

.nav-link:hover {
    text-decoration: underline;
}

.navbar-section-profile
{
    margin: 5px;
}

.search-button {
    padding: 10px 20px; /* Adjust padding for a larger search button */
    font-size: 16px; /* Adjust font size for better visibility */
    background-color: #4CAF50; /* Green color for the search button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-button:hover {
    background-color: #45a049; /* Darker shade on hover */
}

#signupButton,
#postTaskButton
{
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Added border-color transition */
    border: 2px solid #000000; /* Added border styling */
    background-color: transparent; /* Removed background color */
    color: #000000; /* Text color */
}

#signupButton:hover,
#postTaskButton:hover {
    background-color: transparent; /* Removed background color on hover */
    border-color: #45a049; /* Border color on hover */
    color: #45a049; /* Text color on hover */
}

