.about a {
	margin: 0;
}

h2.about {
	margin-bottom: 15px;
}

h3.about {
	margin-bottom: 5px;
}

p.about {
	opacity: .9;
}

.me {
	line-height: 0;
	position: relative;
	transition: all .2s ease-out;
	z-index: 1;
	opacity: .9;
}

.me:hover {
	z-index: 2;
	opacity: 1;
}

.me img {
	object-fit: cover;
	object-position: 10% 20%;
	width: 100%;
}

.overlay {
	background-color: rgba(1,0,41,1);
	height: 100%;
	mix-blend-mode: color;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
	z-index: 3;
}

.overlay:hover{
	background-color: rgba(1,0,41,0);
}

.img-wrap {
	display: block;
}

span.profile {
	font-family: 'hk-bold', sans-serif;
	text-decoration: underline;
	cursor: pointer;
	position: relative;
	transition: all .2s ease-in-out;
}

span.profile:hover {
	color: #FF3377;
}

span.profile span {
	object-fit: cover;
	transition: all .2s ease-in-out;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	top: 0;
	left: 0;
	z-index: 99;
}

span.profile span img {
	width: 250px;
	height: 250px;
	object-fit: cover;
	border-radius: 100%;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .3);
}

span.profile:hover span {
	visibility: visible;
	opacity: 1;
	top: 40px;
}

.emoji {
	font-size: 50px;
	text-decoration: none;
	z-index: 9;
	left: -38px !important;
	top: 132px !important;
	line-height: 1.7;
	background: #fff;
	border-radius: 100px;
	height: 90px;
	width: 90px;
	text-align: center;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .3);
	animation: rotation 2.5s infinite linear;
}

@keyframes rotation {
  50% {
	transform: rotate(50deg);
  }
  100% {
	transform: rotate(0deg);
  }
}

@media screen and (max-width: 550px){
		
  .profile > span {
  		left: 20px;
	}
	
  .profile:hover > span {
		top: 30px !important;
	}
}