* {
	box-sizing: border-box;
}

/*
.download-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 14px 24px;
	font-size: 18px;
	color: #fff;
	background: #000;
	border: none;
	border-radius: 50px;
	text-decoration: none;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}
.download-button i {
	margin-right: 10px;
	font-size: 20px;
	animation: bounce 2s infinite;
}
*/
.download-button {
	padding: 8px 16px;
	font-size: 14px;
}
.download-button i {
	font-size: 16px;
}
.download-button:hover {
	background: #fff;
	color: #000;
	transform: translateY(-5px);
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
}
.download-button:hover i {
	color: #000;
}
.download-button::after {
	content: "";
	position: absolute;
	width: 300%;
	height: 300%;
	top: 50%;
	left: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%) scale(0);
	border-radius: 50%;
	transition: transform 0.5s ease;
	z-index: 0;
}
.download-button:active::after {
	transform: translate(-50%, -50%) scale(1);
	transition: transform 0s;
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
	transform: translateY(0);
}
40% {
	transform: translateY(-8px);
}
60% {
	transform: translateY(-4px);
}
}
ul {
	list-style-type: none;
	padding-left: 0;
}