body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #D9D9D9;
}
#refished{
    font-weight: bold;
}

header {
    background-color: #67A97B;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);

}
#Img{
    width: 50px;
    height: 50px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
    flex: 0 1 auto;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
    text-decoration: none;
    color: white;
    cursor: pointer;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.important{
    color: red;
    font-weight: bold;
    text-decoration: underline;

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

nav ul li {
    margin: 0 15px;
}
.video{
    border-radius: 5px;
    width: 100%;
}

nav ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
}

.recycle-icon {
    font-size: 1.5em;
    height: 60px;
    width: 60px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    flex: 0 1 auto;
}

.recycle-icon-img-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recycle-icon-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .recycle-icon {
        margin-top: 10px;
        flex: 0 0 auto;
        height: 60px;
        width: 60px;
    }
}

.team {
    text-align: center;
    background:#D9D9D9;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.team-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.team-info {
    text-align: left;
}

@media (min-width: 992px) {
    .team-container {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .team-container img {
        width: 40%;
    }
    .team-info {
        width: 50%;
    }
}

footer {
    background-color: #D9D9D9;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    box-shadow: 0px 0 10px rgba(0,0,0,0.5);
}

.social-icons {
    font-size: 1.2em;
}

.social-icons-img{
    width: 50px;
    height: 50px;
}

.icon {
    font-size: 1.5em;
    margin: 0 5px;
}

.logo{
    float: right;
    height: 60px;
    width: 60px;
}

.log{
    float: left;
    height: 60px;
    width: 60px;
}
.spacer{
    margin-top: 60%;
}

@media (max-width: 768px) {
    .logo {
        text-align: center;
        display: block;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .logo {
        text-align: center;
        display: block;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .logo {
        text-align: center;
        display: block;
        width: 100%;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    nav ul {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }

    nav ul li {
        margin: 0 10px;
    }
}