#Blogs_ > .subarticle {
  width: 1000px;
  display: flex;
}

#Blogs_ > .subarticle > .section {
  display: flex;
  flex-direction: column;
  align-items: center;

  flex: 1;
  text-align: left;
}

.socialBttn {
  display: flex;
  align-items: center;
  margin-bottom: 10px;

  border-radius: 20px;

  color: orange !important;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 2px 2px 1px black;
}

.socialBttn > img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  object-fit: contain;
  background-color: white;
  border-radius: 100px;
  transform: rotate(-5deg);
}

.socialBttn > svg {
  margin: 0px;
  padding-left: 10px;
  fill: orange !important;
  filter: drop-shadow(2px 2px 1px black);
}

@media screen and (max-width: 900px) {
  #Blogs_ > .subarticle {
    flex-direction: column;
    width: 450px;
  }
}

@media screen and (max-width: 450px) {
  #Blogs_ > .subarticle > .section {
    margin: 5px 0px;
  }
  .socialBttn {
    font-size: 20px;
  }
}