.hidden {
	display: none;
}

.tracking-in-expand {
	-webkit-animation: tracking-in-expand 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	animation: tracking-in-expand 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand {
	0% {
		letter-spacing: -0.5em;
		opacity: 0;
	}
	40% {
		opacity: 0.6;
	}
	100% {
		opacity: 1;
	}
}
@keyframes tracking-in-expand {
	0% {
		letter-spacing: -0.5em;
		opacity: 0;
	}
	40% {
		opacity: 0.6;
	}
	100% {
		opacity: 1;
	}
}

body {
	background-color: white;
}

html,
body {
	height: 100%;
}

@media screen and (max-width: 800px) {
	html,
	body {
		background-color: white;
		height: unset;
	}
}

.colorized {
	color: #c000db;
}

svg {
	display: block;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding-top: 2%;
	height: 10%;
}

.footer {
	background: none;
	padding: 10px 10px;
	position: absolute;
	top: 0;
	width: 100%;
}

.narrow {
	width: 850px;
}

.bigCard {
	background: white;
	border-radius: 20px;
	left: 50%;
	margin: 0;
	padding: 20px;
	position: absolute;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 850px;
	height: 540px;
}

@media screen and (max-width: 800px) {
	.narrow {
		background: unset;
		border-radius: unset;
		left: unset;
		margin: unset;
		padding: unset;
		position: unset;
		top: unset;
		-ms-transform: unset;
		transform: unset;
		width: unset;
	}
}

h1.title {
	font-weight: 900;
	letter-spacing: -0.5px;
	line-height: 44px;
}

.completed,
.completed strong {
	color: hsl(0, 0%, 81.6%);
}

.card {
	border-radius: 20px;
	transform: scale(0.95);
	transition: box-shadow 0.5s, transform 0.5s;
}

.card img {
	border-radius: 20px 20px 0px 0px;
}

.card:hover {
	box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);
	transform: scale(1);
}

.title.is-4 {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: -0.4px;
}
