.btn-green {
	background: linear-gradient(rgb(0, 255, 0), rgb(0, 151, 0));
	color: white;
	border: 1px solid rgb(0, 150, 0);
}
.btn-green:hover {
	background: linear-gradient(rgb(0, 151, 0), rgb(0, 255, 0));
}
.btn-red {
	background: linear-gradient(rgb(255, 0, 0), rgb(151, 0, 0));
	color: white;
	border: 1px solid rgb(150, 0, 0);
}
.btn-red:hover {
	background: linear-gradient(rgb(151, 0, 0), rgb(255, 0, 0));
}
footer {
	width: 100%;
	height: 140px;
	margin-top: 600px;
	position: relative;
	background: rgb(3, 10, 75);
}
.container-footer-content {
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
	/* border: 1px solid red; */
}
.footer-content {
	width: auto;
	height: 100%;
	padding: 10px;
	/* border: 1px solid yellow; */
}
.link-footer {
	color: white;
	font-size: 0.9rem;
	text-decoration: none;
}
.link-footer:hover {
	opacity: 0.8;
}
.copyright {
	width: 100%;
	color: white;
	font-size: 0.7rem;
	text-align: center;
	position: absolute;
	bottom: 5px;
	/* border: 1px solid gray; */
}