@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

* {
  font-family: 'Montserrat', sans-serif;
}
body {
  background-color: #EDEDED;
}
.wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
h2 {
  margin: 0 0 15px;
  font-size: 70px;
  font-weight: 500;
  color: #4A5757;
}
h4 {
  margin: 0 0 30px;
  font-weight: 400;
  font-size: 30px;
  color: #4A5757;
}
.profile-pic {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  border: solid 4px #4A5757;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.profile-pic img {
  width: 100%;
  display: block;
}
.social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social a {
  margin: 0 15px;
}
.social svg {
  width: 70px;
  height: 70px;
  display: block;
  fill: #4A5757;
}