.main-section-footer {
  background-color: rgb(37, 36, 36);
  font-size: 20px;
 
}

.social-media {
  padding: 20px;
  display: inline-flex;
  justify-content: right;
  text-decoration: none;
  width: 100%;
}

.social-media a > i {
  color:rgb(176, 176, 176);
}

.social-media a {
  padding: 15px;

  transition: 0.5s;
}

.social-media a:hover{
  transform: scale(1.3);
  
  color: white;
}

.social-media a > i:hover {
  color:rgb(255, 255, 255);
}

.text-content {
 padding: 30px;
 color:rgb(144, 144, 144);
}

@media screen and (max-width: 700px) { 
  .social-media {
    justify-content: left;
  }
}

/*Unité css*/
/* https://outils-css.aliasdmc.fr/unites-de-longueurs-css.php */

/*stick footer at bottom (in case of empty page)*/
/* https://dev.to/nehalahmadkhan/how-to-make-footer-stick-to-bottom-of-web-page-3i14 */
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main-section-footer{
  margin-top: auto;
}
  