body {
    background-color: #ffffff;
}

h1 {
    font-family: nunito, sans-serif;
    font-weight: 800;
    color: black;
}

h2 {
    font-family: nunito, sans-serif;
    font-weight: 700;
    color: #000000;
}

h3 {
    font-family: nunito, sans-serif;
    font-weight: 500;
    color: #000000;
}

h4 {
    font-family: nunito, sans-serif;
    font-weight: 400;
    color: #000000;
}

p {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: #000000;
}

footer {
    background-color: #f1f1f1;
    margin-top: 50px;
    border-top: 1px solid #101010;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

button {
    color: #000000;
    background-color: #eaeaea;
    border-color: #000000;
    border-width: 1px;
}

.footer-container {
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;     /* Center content vertically */
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer-links {
    position: absolute;      /* Position relative to container */
    left: 40px;              /* Align to the left */
    display: flex;
    gap: 20px;
}

.footer-copyright {
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin: 0;
}

.footer-links a {
    color: #000000;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.navigation-bar {
    background-color: #95d5b2;
    padding: 20px;
    border-bottom: 3px solid black;
    align-items: top;
    gap: 10px ;
    button {
        color: black;
        background-color: #52b788;
        border: black solid 1.5px;
        margin: 3px;
        font-size: 16px;
        font-weight: 500;
        font-family: nunito;
        border-radius: 50px;
    }
}

.navigation-bar button:hover {
    transform: scale(1.05);
}

.Homepage-data {
    h1 {
        font-family: nunito;
    }
    .highlight {
        color: #40916c;
        font-size: 42px;
        font-weight: 850;
    }
}