@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600&display=swap');

body {
	background-color: #e5e8e8;
	color: #4e545c;
	margin: 0;
	font-family: 'Quicksand';
}

main {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#title {
	text-align: center;
	margin-bottom: 100px;
}

#campoDinheiro {
	font-size: 30px;
	width: 60%;
	margin-bottom: 30px;
	text-align: center;
}

#cartao {
	margin-bottom: 5px;
}

#campoCartao {
	color: #000401;
	margin-bottom: 50px;
	text-align: center;
}

#calcular {
	margin-bottom: 40px;
}

button {
	border-radius: 40px;
	font-size: 1.5rem;
	height: 60px;
	width: 200px;
	border: none;
	background-color: #4e545c;
	color: #e5e8e8;
	transition: all 0.5s linear;
	cursor: pointer;
}

button:hover {
	background-color: #000401;
}

.github {
	color: #e5e8e8;
	text-decoration: none;
}

.github:hover {
	color: aqua;
}

footer {
	width: 100%;
	background-color: #4e545c;
	padding: 16px;
	position: fixed;
	bottom: 0;
	text-align: center;
	font-weight: 400;
}