* {
	margin: 0;
	padding: 0;
}

h1,
h2 {
	color: rgb(236, 236, 236);
}

body {
	font-family: "Baloo Da 2", cursive;
	/* background-color: #d8d3cd; */
	background-color: rgb(19, 19, 19);
	transition: all 3000ms cubic-bezier(0.69, -2.575, 0.24, 2.6);
}

*::-moz-selection {
	color: rgb(19, 19, 19);
	background: rgb(236, 236, 236);
}

*::selection {
	color: rgb(19, 19, 19);
	background: rgb(236, 236, 236);
}

#rotate {
	position: fixed;
	width: 25px;
	top: 20px;
	left: 20px;
	cursor: pointer;
}

.burger {
	/* display: none; */
	position: fixed;
	right: 20px;
	top: 20px;
	transition: 20ms;
	/* cursor: pointer; */
}

.burger div {
	width: 25px;
	height: 3px;
	background-color: rgb(236, 236, 236);
	margin: 5px;
}

header {
	padding-top: 80px;
	text-align: center;
}

.wrapper {
	padding-top: 50px;
	max-width: 650px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: auto;
}

.card {
	margin: 10px;
	width: 100%;
	height: 65px;
	background-color: rgb(19, 19, 19);
	border-style: solid;
	border-color: rgb(236, 236, 236);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: 200ms;
	color: rgb(236, 236, 236);
}

.card:hover {
	background-color: rgb(236, 236, 236);
	color: rgb(19, 19, 19);
}

footer {
	padding: 40px;
	text-align: center;
	color: rgb(236, 236, 236);
}

a {
	width: 100%;
	height: 100%;
	color: rgb(236, 236, 236);
	text-decoration: none;
}

a:visited {
	color: rgb(236, 236, 236);
}

.title-app {
	text-align: center;
}
