.mx-auto{
    margin-left: auto;
    margin-right: auto;
}

.bg-red{
    background-color: red;
}

.min-h-screen{
    min-height: 100vh;
}

.flex{
    display: flex;
}

.justify-center{
    justify-content: center;
}

.items-center{
    align-items: center;
}

.justify-between{
    justify-content: space-between;
}

.flex-col{
    flex-direction: column;
}

.flex-wrap{
    flex-wrap: wrap;
}

.p5{
    padding: 5px;
}

.px-2{
    padding-left: 10px;
    padding-right: 10px;
}

.py-2{
    padding-top: 10px;
    padding-bottom: 10px;
}

.px-4{
    padding-left: 20px;
    padding-right: 20px;
}

.py-4{
    padding-top: 20px;
    padding-bottom: 20px;
}

.m5{
    margin: 5px;
}

.mx-2{
    margin-left: 10px;
    margin-right: 10px;
}

.my-2{
    margin-top: 10px;
    margin-bottom: 10px;
}

.mx-4{
    margin-left: 20px;
    margin-right: 20px;
}

.my-6{
    margin-top: 30px;
    margin-bottom: 30px;
}

.mx-6{
    margin-left: 30px;
    margin-right: 30px;
}

.my-4{
    margin-top: 20px;
    margin-bottom: 20px;
}

.font-bold{
    font-weight: bold;
}

.text-center{
    text-align: center;
}

.btn-brown{
    background-color: #df4836;
    color: white;
    border-radius: 5px;
    border: 2px solid white;
    padding: 5px;
    cursor: pointer;
}

.btn-simple{
    color: blue;
    border-radius: 5px;
    border: 2px solid blue;
    padding: 5px 5px;
    cursor: pointer;
    margin-bottom: 0px;
}

.btn-primary{
    color: white;
    background-color: blue;
    border-radius: 5px;
    border: 2px solid blue;
    padding: 5px;
    cursor: pointer;
}

.btn-gold{
    color: white;
    background-color: #dd9828;
    border-radius: 5px;
    border: 2px solid #c99544;
    padding: 5px;
    cursor: pointer;
}

.btn-gold:hover{
    background-color: #b48e50;
}

.btn-brown:hover{
    background-color: #ab463a;
}

.text-blue{
    color: blue;
}

.text-red{
    color: red;
}

.text-white{
    color: white;
}

.text-yellow{
    color: yellow;
}

.radius-5{
    border-radius: 5px;
}

.d-none{
    display: none;
}

.d-block{
    display: block;
}

.mx-w-80{
    max-width: 80%;
}

.ml-250{
    margin-left: -250px;
}