html {
	font-size: 16px;
}

.social-bar {
	position: fixed;
	right: 0;
	top: 35%;
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 100;
}

.icon {
	color: white;
	text-decoration: none;
	padding: .7rem;
	display: flex;
	transition: all .5s;
}

.icon-facebook {
	background: rgba(46, 64, 110, 1);
}

.icon-twitter {
	background: #339DC5;
}

.icon-youtube {
	background: #E83028;
}

.icon-instagram {
	background: linear-gradient(rgba(64, 93, 230, 1), rgba(88, 81, 219, 1), rgba(131, 58, 180, 1), rgba(193, 53, 132,1), rgba(225, 48, 108,1), rgba(253, 29, 29,1), rgba(245, 96, 64,1), rgba(247, 119, 55,1), rgba(252, 175, 69,1), rgba(255, 220, 128,1)); 
}

.icon:first-child {
	border-radius: 1rem 0 0 0;
}

.icon:last-child {
	border-radius: 0 0 0 1rem;
}

.icon:hover {
	padding-right: 3rem;
	border-radius: 1rem 0 0 1rem;
	box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
}