body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
	background-color: #F4D04E;
}

#app {
	height: 522px;
	width: 384px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	gap: 24px;
	padding: 24px;
  background: #fff;
  border-radius: 20px;
	box-shadow: 8px 8px 0 0 #000;
	border: 1px solid #111111;
}

.cover {
	width: 100%;
	height: 200px;
	border-radius: 12px;
	object-fit: cover;
}

.learning-label {
	width: 82px;
	padding: 4px 12px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	background-color: #F4D04E;
}

.title-card {
	font-size: 24px;
	font-weight: 800;
}

.title-card:hover {
	cursor: pointer;
	color: #F4D04E;
}

@media (max-width: 640px) {
	#app {
		height: 501px;
		width: 327px;
	}

	.title-card {
		font-size: 20px;
	}

	.learning-label {
		font-size: 12px;
	}
}