.btn{
    border:solid 1px white;
    padding: .4rem 1rem;
    text-decoration: none;
    color: white;
    transition: all 200ms ease;
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    border-radius: 4px;
}

.btn:hover{
    cursor: pointer;
    background-color: black;
    color: white;
}

.btn--full{
    color: white;
    border: none;
    background-color: var(--primary-color);
    padding: .4rem 1.2rem;
}

.btn--dark{
    border:solid 1px black;
    color: black;
}

.btn svg{
    width: 1rem;
    height: 1rem;
    transform: rotate(90deg);   
}