*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:16px;
    line-height: 1.5;
    color: #333;
    /* background-color: #a1c3ff; */
}



h1, h2{
    margin-bottom: 15px;
}

#navbar{
    background-color:darkseagreen;
    color:white;
    height: 60px;
    position: sticky;
    top: 0;
    overflow: hidden;
}

#navbar .logo{
    color: #333;
    font-size: x-large;
    /* font-weight: bold; */
}

#navbar a{
    color:#333;
    text-decoration: none;
    font-size:18px;
    /* font-weight: bold; */
}


#navbar a:hover{
    color:lightblue;
}


#navbar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#navbar ul{
    display: flex;
}

#navbar ul li{
    margin-left: 20px;
}

.pageHeader{
    text-align: center;
}

.pageHeader h1{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    text-align:center;
    margin-bottom: 1.5rem;

}

.projectsList{
    /* background-color: #333; */
    display: flex;
    justify-content: space-around;
}

.projectsListContainer {
    /* background-color: aliceblue; */
    width:80%;
    display: flex;
    flex-direction: column;
}

.projectBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
}

.projectsList3D{
    /* background-color: #333; */
    display: flex;
    justify-content: space-around;
}

.projectsListContainer3D {
    /* background-color:blue; */
    width:90%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.projectsListContainer3D .projectBox{
   border-radius: 20px;
   padding:0.5rem;
   margin:0.5rem;
}


.projectsListContainer3D .projectBox img{
    width:300px;   
    border-radius: 20px;
}


.projectMedia {
    width: 50%;
    height:auto;
    padding:10px;
    /* background-color: cadetblue; */
}