﻿body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #444;
}

header {
    background-color: #005432;
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 2em;
}

nav ul {
    list-style-type: none;
    text-align: center;
    padding: 10px;
}

    nav ul li {
        display: inline;
        margin-right: 10px;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-us {
    padding: 20px;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .about-us h1 {
        color: #005432;
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .about-us p {
        line-height: 1.6;
    }

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    background-color: #005432;
    color: white;
    padding: 20px;
    margin: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .team-member img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .team-member h2 {
        font-size: 1.2em;
        margin-top: 0;
    }

    .team-member h4 {
        font-size: 0.9em;
        margin-bottom: 10px;
    }

.data-model {
    text-align: center;
    margin-top: 20px;
}

    .data-model img {
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        margin-bottom: 10px;
    }

.github-link {
    text-align: center;
    margin-top: 20px;
}

    .github-link img {
        margin-bottom: 10px;
    }

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


.footer {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding:10px;
}

.footer-social {
    font-size: 24px;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

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


@media only screen and (max-width: 768px) {
    .team-member {
        width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 480px) {
    .team-member {
        width: calc(100% - 20px);
    }
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: fixed;
    top: 15px;
    left: 15px;
    background-color: white;
    color:black;
}

    .button:hover {
        background-color: white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        transform: translateY(-3px);
    }

.pie-charts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.chart-container2 {
    flex: 0 0 calc(25% - 20px);
    margin: 10px;
    padding-bottom: 20px;
}

canvas {
    width: 100% !important;
    height: auto !important;
}

