*{
  padding: 0;
  margin: 0;
}

body{
  background-color: rgb(23, 23, 23);
  font-family: Inter, sans-serif;
}



.titulo{
color: rgb(255, 255, 255);
font-size: 15px;
}

.subtitle{
  color: aliceblue;
  font-size: 14px;

}

h4{
  color: grey;
}

.about{
  padding-block: 40px;
}


.container{
  max-width: 550px;
  margin: 50px auto 0 auto;
  padding-inline: 20px;
}

.content{
  padding-bottom: 30px;
}

/* Contenedor de los botones */
.social-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

/* Estilos de los botones individuales */
.social-buttons a {
  text-decoration: none;
}

.social-buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #333;
  background-color: transparent;
  color: #626262;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Efecto al pasar el mouse por encima */
.social-buttons button:hover {
  background-color: #333;
  color: #fff;
  transform: scale(1.1);
}
