.d-flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.align-items {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.gap-10 {
	gap: 10px;
}

.h-100 {
	height: 100%;
}

.w-80 {
	width: 80%;
}

.m-auto {
	margin: 0 auto;
}