body {
  font-family: 'Arial', sans-serif;
  background-color: #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

#businessCard {
  box-shadow: 0 0 10px #000;
  background-color: white;
  padding: 20px;
  width: 300px;
  text-align: center;
}

.container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 5px;
}

.imagen{
	padding:20px;
}

.texto{}

svg{
	width:280px;
}

.profile-photo {
  width: 100px;
  height: auto;
  border-radius: 20%;
  margin: 0 auto;
}

h1, h2 {
  color: #333;
}
h1{
	font-size:1.8em;
}
h2{
	font-size:1.3em;
}
p, a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.profile-photo:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

/*@media only screen and (max-width: 600px) {
  #businessCard {
      width: 90%;
      padding: 20px;
  }
  svg{
	width:90%;
}
}*/