a.logo{
  border-bottom: 3px solid dodgerblue ;
}
.sections{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.readme-container{
  margin-top: 50px;
}
.readme-container h2{
  text-align: center;
  font-size: 2.3rem;
  text-transform: uppercase;
  font-weight: 700;
}
.img{
  height: 300px;
  width: 400px;
  background: #333;
  border-radius: 10px;
}
.sect{
  display: flex;
  width: 60%;
  gap: 50px;
  line-height: 25px;
  margin: 23px;
}
.sect-text h4{
  font-size: 1.3rem;
  border-left: 2px solid red;
  padding: 5px;
}
.the-WHY{
  padding: 3rem;
  width: 90%;
  line-height: 1.9rem;
}
.the-WHY h4{
  border-left: 3px solid red;
  font-size: 2rem;
  text-transform: capitalize;
  padding: 3px;
}
.why-content{
  display: flex;
}
.the-WHY img{
  height: 400px;
}
.the-WHY p{
  font-weight: 700px;
  padding: 3rem;
  font-size: 1.2rem;
}


@media screen and (max-width: 700px){
  .sect{
    flex-direction: column;
    margin: 2px;

  }
  .img{
    display: block;
    margin:0 auto;
  }
  .readme-container{
    position: relative;
    bottom: 99px;
    padding: 0;
    margin-right: 23px;
  }
  .why-content{
    flex-direction: column;
  }
  .the-WHY h4{
    white-space: pre-line;
    padding: 1px;
    line-height: 3rem;
  }
  .last-link{
    border-bottom: 2px solid dodgerblue;
  }
  .sect img{
    width: 300px;
  }
}