.text-heading {
  color: black;
  display: flex;
  font-weight: bold;
  margin-top: 10px;
}

.navbar ul li a{
  width: 115px;
  height: 50px;
  border: none;
  color: black;
  font-weight: bold;
  background-color: #58acc8;
  border-radius: 4px;
  box-shadow: inset 0 0 0 0 #ADD8E6;
  transition: ease-out 0.3s;
  border: none;
  cursor: pointer;
  outline: none;
}

.navbar ul li a:hover{
  box-shadow: inset 100px 0 0 0 #b34ff0;
}

.header {
  margin-top: 20px;
  margin-bottom: 20px;
}
.header h1{
  font-size: 30px;
}

.the-person {
  text-align: justify;
  margin-top: 20px;
  margin-bottom: 20px;
}

.the-component {
  text-align: justify;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 250px;
}


.roadmap {
  width: 300px ;
  margin-top: 20px;
  margin-bottom: 20px;
}

.roadmap span{
    color: black;
    font-weight: bold;
}

.roadmap p {
  border-top: 2px dashed;
  border-color: slateblue !important;
  margin: 0;
  padding: 30px;
}

.roadmap p:nth-child(even) {
  border-left: 2px dashed;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  margin-right: 30px;
  padding-right: 0;
}

.roadmap p:nth-child(odd) {
    border-right: 2px dashed;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    margin-left: 30px;
    padding-left: 0;
  }

  .roadmap p:first-child{
      margin-top: 20px;
      border-top: 0;
      border-top-right-radius: 0;
      border-top-left-radius: 0;
  }

  .roadmap p:first-child{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.community{
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer{
    margin-top: 50px;
}

.social-menu ul {
    position: absolute;
    top: 50%;
    left: 88%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    display: flex;
}
.social-menu ul li {
    list-style: none;
    margin: 0 10px;
}
.social-menu ul li .fa {
    color: #000000;
    font-size: 25px;
    line-height: 50px;
    transition: .5s;
}
.social-menu ul li .fa:hover {
    color: #ffffff;
}
.social-menu ul li a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    transition: 0.5s;
    transform: translate(0,0px);
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.social-menu ul li a:hover {
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
.social-menu ul li:nth-child(1) a:hover {
    background-color: #3b5999;
}
.social-menu ul li:nth-child(2) a:hover {
    background-color: #55acee;
}
.social-menu ul li:nth-child(3) a:hover {
    background-color: #e4405f;
}
.social-menu ul li:nth-child(4) a:hover {
    background-color: #cd201f;
}
.social-menu ul li:nth-child(5) a:hover {
    background-color: #0077B5;
}