* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f4f4f4; /* Color de fondo opcional */
}

.buttonssocial {
  min-width: 300px; /* Tamaño mínimo para hacerlo responsive */
  display: flex;
  justify-content: space-around;
}

.buttonssocial a {
  text-decoration: none;
  font-size: 20px; /* Tamaño de fuente reducido para hacerlo responsive */
  width: 40px; /* Tamaño de los botones reducido para hacerlo responsive */
  height: 40px; /* Tamaño de los botones reducido para hacerlo responsive */
  line-height: 40px; /* Ajustado según el nuevo tamaño de los botones */
  text-align: center;
  background: #314652;
  color: #f1f1f1;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
  transition: all .4s ease-in-out;
}

.buttonssocial a:hover {
  transform: scale(1.2);
}

section {
  text-align: center; /* Centra el contenido del section */
}

.body_social {
  /* Puedes agregar estilos adicionales para body_social según sea necesario */
}

/* Estilos adicionales para mejorar la presentación */
h3 {
  color: #314652;
}

/* Puedes agregar más estilos según tus necesidades */
