.min-h-screen{
    min-height:100vh

}
.bg-red{
    background-color: red;

}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

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

.justify-between{
    justify-content: space-between;
}
.items-center{
align-items: center;
}

.font-bold{
    font-weight: bolder;
}
.flex-col{
    flex-direction: column;
}

.my-1{
    margin-top: 13px;
    margin-bottom: 13px;
}
.my-2{
    margin-top: 26px;
    margin-bottom: 26px;
}

.px-2{
   padding-left: 13px;
   padding-right: 12px;
}

.text-blue{
    color: rgb(110, 110, 255);
}
.btn{
    padding: 7px 12px;
     background-color:rgb(227 74 56) ;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    border: 2px solid white;
}
.overflow-x-hidden{
    overflow-x: hidden;
}
.text-center{
    text-align: center;
}
