
.hero_links {
    display: flex;
    align-items: center;
    gap:40px;
}
.white_button {
    padding:0.8em 2em;
    border-radius: none;
    background-color: var(--white);
    font-family: 'Lexend', sans-serif;
    color: var(--black);
    transition: all .3s ease;
    text-decoration: none;
    font-size: 1em;
}

.white_link {
    color: var(--white);
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
    transition: all .3s ease;

}

.white_button:hover {
    background-color: var(--black);
    color: var(--white);
}

.white_link:hover {
    transform: translateX(6px);
}