* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
   background: white;
}

a {
  text-decoration: none;
}

.general {
  height: 100dvh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container {
  width: 350px;
  height: 350px;
  text-align: center;
}

.photo {
  border: 3px solid black;
  border-radius: 50%;
  width: 150px;
  height: auto;
}

.jobTitle {
  opacity: 0.7;
}

.social {
  margin-top: 50px;
}

.social img {
  width: 40px;
  height: auto;
}

.social img:hover {
  scale: 1.1;
  transition: 0.1s;
}