*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
}

main{
    margin-top: 10vh;
    background-color: rgb(255, 255, 255);
}

.navbar{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.title{
    margin-left: 50px;
    font-size: 28px;
}

.nav-item{
    margin-left: 40px;
}

h2{
    font-weight: 600;
    font-size: 22px;
}

.profile-img{
    border-radius: 50%;
}

.section-title{
    border-right: 5px solid rgb(33,37,41,1);
    padding-right: 10px;
}

.project-card:hover{
    transform: scale(1.01);
}
.project-img{
    width: 95%;
    margin: auto;
}
.project-title{
    margin: auto;
}

.card-body{
    padding-top: 0px;
}

a{
    text-decoration: none;
}
.card{
    box-shadow: 3px 5px 8px black;
}

@media screen and (max-width: 768px){
    .section-title{
        border-right: none;
        border-bottom: 5px solid rgb(33,37,41,1);
        padding-right: 10px;
        padding-bottom: 5px;
        margin: 15px;
    }
}