body, html{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#about-h3{
    margin-top: 100px;
}
main{
    width: 90%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 90%;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

ul {
    list-style-position: inside; 
    padding-left: 0; 
    text-align: left; 
    display: inline-block;
}

.participians-spec-name {
    display: block;
    font-size: 22px;
    margin-top: 15px; 
}
ul li {
    margin-bottom: 5px; 
}
.participians{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
}
.participians-spec{
    width: 245px;
}
main h3{
    font-size: 32px;
    letter-spacing: 2px;
}
main hr{
    height: 1px;
    background-color: black;
    border: 1px solid black;
    border-radius: 2px;
    width: 97%;
}
.text{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.image{
    width: 50%;
}
.image img {
    width: 98%;
    border-radius: 5px;
    margin-right: 5px;
}
.work h3{
    font-size: 25px;
    font-weight: normal;
}
.work h4{
    font-size: 20px;
    font-weight: lighter;
}
.work{
    flex-direction: column;
}
.work-hr{
    background-color: gray;
    border: 1px solid gray;
    height: 0.5px;
    width: 65%;
    margin-bottom: 15px;
}
.work-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.work-container div{
    width: 45%;
}



@media screen and (max-width: 900px) {
    .entry{
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .work-container{
        flex-direction: column;
    }
    .text{
        width: 100%;
        margin-bottom: 30px;
    }
    .image{
        width: 100%;
        margin-bottom: 30px;
    }
    .work-container div{
        width: 100%;
    }
}

#menu{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(131, 255, 255);
    height: 60px;
    position: fixed;
}
#logo{
    flex: 1;
}
#logo img{
    padding-left: 20px;
    height: 60px;
    width: auto;
}
#menu_elements{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Ubuntu, -apple-system, system-ui, sans-serif;
    letter-spacing: 2px;
    flex: 3;
}
.menu_element{
    background-color: rgb(1, 224, 224);
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 7px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: rgb(63, 63, 63);
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    box-shadow: 0 0 2px #0000004f;
}
.menu_element:hover{
    color: black;
}
#empty{
    flex: 1;
}
#side_nav_button{
    display: none;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    padding-right: 20px;
    cursor: pointer;
}
#side_nav_button img{
    width: auto;
    height: 35px;
}
#side_nav{
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    right: -50vw;
    width: 50vw;
    background-color: white;
    transition: all ease-in-out 0.3s;
}
#side_nav_close{
    background-color: rgb(131, 255, 255);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
#close_button{
    background-color: transparent;
    border: none;
    padding: 15px 15px 12px 0;
    margin-left: auto;
    cursor: pointer;
}
#close_button img{
    width: auto;
    height: 29px;
}
.side_nav_element{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: rgb(53, 53, 53);
    transition: all ease-in 0.2s;
    cursor: pointer;
    border-bottom: 1px solid #0000006f;
}
.side_nav_element:last-child{
    border-bottom: 1px solid #0000006f;
}
.side_nav_element:hover{
    color: black;
    background-color: rgba(243, 243, 243, 0.8);
}
.active{
    color: black;
    background-color: rgb(0, 197, 197);
    cursor: default;
}
.activeSide{
    color: black;
}
#footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding-bottom: 6px;
    background-color: rgb(131, 255, 255);
    font-size: 14px;
    font-family: Ubuntu, -apple-system, system-ui, sans-serif;
}
#footer img{
    width: auto;
    height: 30px;
}
#divider{
    padding: 0 2px;
}
#footer_text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

@media screen and (max-width: 1000px){
    #side_nav_button{
        display: flex;
    }
    #menu_elements{
        display: none;
    }
}
@media screen and (max-width: 900px){
    #footer{
        height: 80px;
    }
    #divider{
        display: none;
    }
    #footer_text{
        flex-direction: column;
    }
}