body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}
#header-container{
    width: 100%;
    height: 75px;
    background-color: #949C9D;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#language-div{
    padding-left: 2%;
}
.button-color, #survey-button:hover{
    background-color: #175a68;
}
#survey-button{
    border: none;
    margin-right: 2%;
}
#language-container{
    left: 0;
}
#languages-container img{
    width: 75px;
    height: 40px;
}
#languages-container button{
    border: none;
    margin: 0;
    padding: 0;
}
#first-section{
    margin-top: 75px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#first-title{
    color: #175a68;
    margin-bottom: 2%;
    font-weight: 700;
}
#image-caption{
    font-weight: 700;
}
#outer-container{
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
}
#inner-section{
    background-color: #F0F0F0;
    padding: 25px 10% 25px 10%;
}
#logo-container img, #image-container img{
    width: 20%;
    margin: 2%;
}
.oe-img{
    padding-left: 2%;
    border-left: 1px solid black;
}
.header-color{
    color: #175a68;
    font-weight: 700;
}
.header-margin{
    margin-top: 2%;
    margin-bottom: 2%;
}
#spacialgap-image{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#spacialgap-image img{
    max-height: 500px;
    max-width: 800px;
}
#citation li{
    margin-top: 2%;
    margin-bottom: 2%;
}
footer{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
#image-container{
    width: 33%;
}
#image-container img{
    width: 40%;
}
.person{
    display: flex;
    margin: 5% 0 5% 0;
}
.person img{
    border-radius: 50%;
    overflow: hidden;
    height: 200px;
    width: 200px;
}
.person-image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.person-data{
    display: flex;
    flex-direction: column;
    margin: 4%;
    white-space: normal;
}
.person-data span{
    margin: 1% 0 1% 0;
}
#footer-right{
    font-size: 14px;
    text-align: right;
    font-size: 400;
    margin-right: 1%;
}
#footer-title{
    font-size: 1rem;
}
#footer-right span{
    display: block;
}
.full-img{
    width: 100%;
    height: 100vh;
    background:rgba(0, 0, 0, 9) ;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index:100;
}
.full-img img{
    width: 90%;
    max-width: 70%;
}
.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.gallery{
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;;
}
.gallery-image{
    cursor: pointer;
    width: 100%;
    object-fit: cover;
    transition: transform .3s; /* Animation */
}
.gallery-image:hover{
    transform: scale(1.25);
}
@media (max-width: 767px) {
    .person img {
        height: 150px; /* Adjust the max-height for smaller screens */
        width: 150px;
    }
    #logo-container{
        width: 100%;
    }
    #logo-container img, #image-container img{
        width: 40%;
    }
    #image-container{
        width: 100%;
    }
    .person{
        flex-direction: column;
    }
    footer{
        flex-direction: column;
    }
    #spacialgap-image img{
        max-height: 200px;
        max-width: 350px;
    }
    #languages-container img{
        width: 50px;
        height: 25px;
    }
}