* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Roboto", sans-serif;
}

html {
	min-height: 100%;
	font-size: 14px;
}

body {
	background: linear-gradient(to left, #389742, #393b8a);
	min-height: 100%;
}

.bi-star-fill {
	margin: 0;
	padding: 0;
}

.container {
	max-width: 550px;
	margin: 0 auto;
	padding: 25px 20px 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: #fff;
}

div .insta {
	font-weight: 700;
	font-size: 2em;
	margin-top: 0 auto;
	background: #fff;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.insta-desc {
	font-weight: 500;
	font-size: 16px;
}

a {
	text-decoration: none;
	color: #389742;
}

.degrade {
	background: #fff
}

/* ESTILO DO HEADER */

header {
	text-align: center;
}

header h1 {
	font-size: 2em;
	margin-bottom: 1rem;
	font-weight: 700;
}

header p {
	font-size: 1rem;
	margin-bottom: 0.8rem;
	font-weight: 400;
}

/*ESTILO DOS BOTÔES*/

section.botoes-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

a.link button {
	width: 100%;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	cursor: pointer;
	color: #389742;
	transition: .2s;
}

a.link i {
	font-size: 1.5em;
}

a.link button:hover,
footer a.btn-footer:hover {
	transform: scale(1.10);
}


/* ESTILO DO FOOTER */

footer {
	text-align: center;
	padding-bottom: 10px;
}

footer a.btn-footer {
	width: 40px;
	height: 40px;
	display: inline-block;
	font-size: 1.5em;
	line-height: 40px;
	border-radius: 50%;
	margin: 10px 0;
	transition: .2s;
}

.txt-rodape {
	text-align: center;
	font-size: 22px;
	margin: 5px 0 0;
	line-height: 20px;
	color: #fff;
}

@media (max-width: 480px) {
	footer {
		padding-top: 10px;
	}

	footer a.btn-footer {
		margin: 8px 0;
	}

	.txt-rodape h6 {
		font-size: 14px;
	}
}

@keyframes balancar {
	0% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(-10deg);
	}

	50% {
		transform: rotate(10deg);
	}

	75% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.bi-star-fill {
	display: inline-block;
	/* importante pra animar */
	animation: balancar 1s ease-in-out infinite;
}