.w-full {
    width: 100%;
}

.w-screen {
    width: 100vw;
}

.w-screen-max {
    width: 100vw;
    max-width: 100vw;
}

.w-screen-min {
    width: calc(100vw - 26px);
}

.resize-none {
    resize: none;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.flex {
    display: flex;
}

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

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

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

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

.p {
    padding: 8px;
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.pl-2 {
    padding-left: 1rem;
}

.opacity-50 {
    opacity: 0.5;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 16px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 20px;
}

.text-2xl {
    font-size: 24px;
}

.text-3xl {
    font-size: 30px;
}

.text-4xl {
    font-size: 36px;
}

.text-5xl {
    font-size: 48px;
}

.text-6xl {
    font-size: 64px;
}

.text-7xl {
    font-size: 72px;
}

.text-8xl {
    font-size: 96px;
}

.text-9xl {
    font-size: 128px;
}

.text-10xl {
    font-size: 256px;
}

.text-mid {
    color: rgba(255, 255, 255, 0.5) !important;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pl-4 {
    padding-left: 1rem;
}

.p-0 {
    padding: 0;
}

.p-2 {
    padding: 0.5rem;
}

.rounded {
    border-radius: 10px;
}

.rounded-full {
    border-radius: 999px;
}

.rounded-none {
    border-radius: 0px;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.z-0 {
    z-index: 0;
}

.pointer-none {
    pointer-events: none;
}