.text-orange{
    color: orange;
}
.text-pink{
    color: #ff47d9;
}
.text-yellow{
    color: yellow;
}
.text-blue{
    color: blue;
}
.text-green{
    color: green;
}
.text-red{
    color: red;
}
.text-violet{
    color: violet;
}
.bg-orange{
    background-color: orange;    
}
.bg-pink{
    background-color: #ff47d9;
}
.bg-yellow{
    background-color: yellow;
}
.bg-cream{
    background-color: rgba(213, 140, 173, 0.689);
}
.bg-blue{
    background-color: blue;
}
.bg-green{
    background-color: green;
}
.bg-red{
    background-color: red;
}
.bg-brown{
    background-color: rgb(35, 9, 9);
}
.bg-violet{
    background-color: violet;
}
.bg-blur{
    background-color: rgba(30, 9, 30, 0.461);
}
.fw-100{
    font-weight:100;
}
.fw-200{
    font-weight:200;
}
.fw-300{
    font-weight:300;
}
.fw-400{
    font-weight:400;
}
.fw-500{
    font-weight:500;
}
.fw-600{
    font-weight:600;
}
.fw-700{
    font-weight:700;
}
.fw-800{
    font-weight:800;
}
.fw-900{
    font-weight:900;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}