.discordblock {
	position: fixed;
	margin: 15px;
	margin-top: 90px;
	display: table-cell;
   	z-index: 999;
}

.discord-ava {
	width: 60px;
	height: 60px;
	border-radius: 45%;
	transition: 0.3s;
	border: 2px solid #aaa;
	overflow: auto;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	animation: 5s ease-in-out 0s normal none infinite running trambling-animation;

}

.discord-ava:hover {
	border-radius: 35%;
	animation: none;
}

@keyframes trambling-animation {
    0%, 50%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-5deg);
    }
    20%, 40% {
        transform: rotate(5deg);
    }
}


.pop-up {
	color: #eee; background: #111;
	width: 200px; height: 50px;
	box-sizing: border-box;
	padding: 5px 10px; margin: 0px 5px;
	border-radius: 10px;
	opacity: 0;
	transition: 0.3s;
	display: inline-block;
	vertical-align: middle;
	margin-left: -250px;
	pointer-events: none;
}

.pop-up::before {
	content: "";
	position: absolute;
	width: 0; height: 0;
	margin-left: -25px; margin-top: 12px;
	border: 7px solid transparent;
	border-right: 9px solid #111;
}

.discord-link:hover ~ .pop-up {
	opacity: 0.9;
	margin-left: 9px;

}
