.flex{
    display: flex;
}

.items-center{
    align-items:center;
}

.justify-between{
    justify-content: space-between;
}

.btn{
    padding: 0.8rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s ease;

}

.btn-primary{
    background: #66ffff;
    color: #000000;
}

.btn-primary:hover{
    background: transparent;
    border-color: #66ffff;
    color: #66ffff;

}

.btn-secondary{
    background: transparent;
    color: #66ffff;
    border-color: #66ffff;
}

.btn-secondary:hover{
    background: #66ffff;
    color: #ffffff;

}

.flex-1{
    flex:2px;

}