body {

	background-color: rgb(255, 101, 101);
	color: rgb(255, 255, 255);
	font-family: "Archivo Black", sans-serif;
	margin: 0;
	text-align: center;
	transition: all 250ms ease;
}

p {
	font-size: larger;
}

header {
	font-size: 3em;
	text-transform: uppercase;
	padding: 2rem;
	margin: auto auto 1rem auto;
	background-color: rgba(255, 255, 255, 0.20);
}

button {
	background-color: rgba(255, 255, 255, 0.35);
	color: white;
	font-size: xx-large;
	padding: 1rem;
	border: solid 0px rgba(255, 255, 255, 0.178);
	border-radius: .5rem;

}

.row {
	display: flex;
}

.even {
	justify-content: space-evenly;
}

.center {
	align-items: center;
}

.gothic {
	/* 7u7 */
	background-color: rgb(69, 69, 69);
}

.card {
	background-color: rgba(255, 255, 255, 0.178);
	border-radius: .5rem;
	margin: 1rem;
	padding: 1rem;
}

.heart {
	fill: red;
	position: relative;
	top: 5px;
	width: 50px;
	animation: pulse 1s ease infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
	}

	100% {
		transform: scale(1);
	}
}