.uppercase {
	text-transform: uppercase;
}

.text-center {
	text-align: center;
}

/*display*/
.flex {
	display: flex;
}

.grid {
	display: grid;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline-flex {
	display: inline-flex;
}

.flex-col {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

/*position*/
.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.fixed {
	position: fixed;
}

.sticky {
	position: sticky;
}

.inset-0 {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.top-0 {
	top: 0;
}
.bottom-0 {
	bottom: 0;
}
.left-0 {
	left: 0;
}
.right-0 {
	right: 0;
}
.z-10 {
	z-index: 10;
}
.w-full {
	width: 100%;
}
.h-full {
	height: 100%;
}
.object-cover {
	object-fit: cover;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}