
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* flexbox styling */
.flex {
    display: flex;
}

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

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

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


.grid {
    display: grid;
}


/* text styling */
.text-center {
    text-align: center;
}



/* height width  */
.h-screen {
    height: 100vh;
}

.h-full {
    height: 100%;
}

.w-screen {
    width: 100vw;
}

.w-full {
    width: 100%;
}

/* color styling */
.bg-black{
    background-color: black;
}