body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: auto;
}
.header {
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    height: auto;
    text-align: center;
    font-size: small;
    float: left;
}
.footer {
    width: 100%;
    height: 0vh;
    background-color: rgb(0, 0, 0);
}
.footer-contact {
    width: 100%;
    height: 28vh;
    background-color: rgb(0, 0, 0);
}
.main-site {
    background-color: black;
    min-width: 100%;
    min-height: 100vh;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-site-team {
    background-color: black;
    min-width: 100%;
    min-height: 100vh;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -10vh;
}
.main-site-contact {
    background-color: black;
    min-width: 100%;
    min-height: 60vh;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main {
    background-color: black;
    min-width: 100%;
    min-height: 90vh;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main img {
    align-items: center;
    height: 40vh;
    width: 40vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    animation: appear 2s ease-in-out forwards;
}
.main img:hover {
    transform: scale(1.2);
}
.main a {
    animation: appear 2s ease-in-out forwards;
    text-align: center;
    justify-content: center;
}
.icon-bar {
    height: 10vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: appear1 1s ease-in-out forwards;
}
.icon-bar a {
    float: left;
    width: 20%;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 36px;
    padding-top: 2%;
    padding-bottom: 1%;
}
.icon-bar a:hover {
    background-color: #0e0e0e;
    transform: scale(1.2);
}
.icon-bar p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes appear1 {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.main-site-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    animation: appear 2s ease-in-out forwards;
    margin-top: 10vh;
}
.main-site-content-contact{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    animation: appear 2s ease-in-out forwards;
    flex-direction: column;
}
.member {
    position: relative;
    width: 23%;
    margin: 1%; 
    overflow: hidden; 
}
.member img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 50%;
    opacity: 0.7;
}
.member:hover img {
    transform: scale(0.9);
    opacity: 0.5;
}
.member-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.member:hover .member-info {
    opacity: 1;
}
.member-info h3 {
    margin: 10px 0 5px 0;
    font-size: 1.2em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.member-info p {
    margin: 0;
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 768px) {
    .member {
        width: 45%;
        margin: 2%;
    }
}
@media (max-width: 480px) {
    .member {
        width: 100%;
        margin: 3% 0;
    }
}
.project {
    position: relative;
    width: 46%; 
    margin: 1%; 
    overflow: hidden;
}
.project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.project:hover .project-info {
    opacity: 1;
}
.project-info h3 {
    margin: 10px 0 5px 0;
    font-size: 1.4em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.project-info p {
    margin: 0;
    width: 80%;
    font-size: 0.8em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.project img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 28%;
}
.project:hover img {
    transform: scale(0.98);
    opacity: 0.5;
}
@media (max-width: 768px) {
    .project {
        width: 45%;
        margin: 2%;
    }
}

@media (max-width: 480px) {
    .project {
        width: 100%;
        margin: 3% 0;
    }
}