*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.d-flex
{
    display: flex;
}
.justify-content-center
{
    justify-content: center;
}
.align-items-center
{
    align-items: center;
}
.btn
{
    background-color: #f1f5f9;
    padding: 0.5rem;
    border-radius: 5px;
     font-family: "Quicksand", sans-serif;
     text-decoration: none;
     border: none;
    font-size: 15px;
    font-weight: 550;
    margin-right: 30px;
}
.d-flex-col
{
    display: flex;
    flex-direction: column;
}