/* transition and animation */


.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .fade-in.show {
    opacity: 1;
  }




.navbar {

    background-color: black;
}

.tags {
    display: flex;
    align-items: center;
    justify-content: center;
}




.tags:hover {

   
    font-size: 1.5rem;
 

}

.hidden-nav {
    visibility: hidden;
    width: 65%;
}






/*  body */

.body{
    background-color:  #0c0c0c ;
    height: max-content;
    padding-bottom: 1%;
}


.heading {

    color: white;
    display: flex;
    justify-content: center;
    padding-top: 5%;
    padding-bottom: 5%;
    margin-left: 5%;
    margin-right: 5%;
    border-bottom: 1px solid white;
}


.vertical-Line {

    height: max-content;
    border-left: 2px solid white;
    margin-left: 5%;
    margin-top: 5%;
}

.horizontal-line {

   

    height: 0.1%;
    border: 2px solid white;
}

.timeline-date {

    color: white;
   
}








/*footer */





footer {

    position: relative;
    bottom: 0;
    height: 3rem;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-logo {

    color: white;
    font-size: 1.5rem;

}


.logo-tag {
    color: white;
    text-decoration: none;
}

.logo-tag:hover {

    font-size: 2rem;

}