.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;
}

.btn:hover{
    cursor: pointer;
    background-color: white;
    color: black;
}

.btn--full{
    color: white;
    border: none;
    background-color: #A09F94;
    padding: .6rem 1.2rem;
}

.btn--dark{
    border:solid 1px black;
    color: black;
}

.btn svg{
    width: 1rem;
    height: 1rem;
    transform: rotate(90deg);   
}

.btn--arrow-right svg{
    transform: rotate(-90deg);
}