*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Roboto', sans-serif;
}

.navbar{
    transition: background-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#logo{
    width: 30px;
    height: auto;
}

#responsive-my-picture{
    max-width: 80%;
    max-height: 60%;
}

@media(min-width: 768px){
    #responsive-my-picture{
        max-width: 70%;
        height: auto;
    }
}

.card-body>img{
    object-fit: cover;
    height: 250px;
}

.card-projects>.card-body>.card-text{
    height: 150px;
    text-align: justify;
}

.timeline {
    border-left: 1px solid hsl(330, 69%, 55%);
    position: relative;
    list-style: none;
}

.timeline .timeline-item {
    position: relative;
}

.timeline .timeline-item:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .timeline-item:after {
    background-color: hsl(330, 69%, 55%);
    left: -38px;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
}

footer>div>i{
    cursor: pointer;
}