.min-h-screen{
    min-height: 100vh;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.bg-red{
    background-color: red;
}
.flex{
    display:flex;
}
.flex-col{
    flex-direction: column;
}
.items-center{
    align-items: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
.font-bold{
    font-weight: bold;
}
.btn{
    padding: 4px 12px;
    border: 2px solid rgb(88, 4, 99);
    border-radius: 6px;
    color: white;
    background-color: rgb(88, 4, 99);
    cursor: pointer;
}
.my-1{
    margin-top: 13px;
    margin-bottom: 13px;
}
.my-2{
    margin-top: 26px;
    margin-bottom: 26px;
}
.px2{
    padding-left: 13px;
    padding-right: 13px;
}
.text-green{
    color: rgba(9, 116, 9, 0.911);
}
.float-right{
    float: right;
}
.text-center{
    text-align: center;
}
.highlighted{
    font-size: 1.1rem;
    font-weight: bolder;
}