.generic_Button {

    /* width: clamp(80px, 8vw, 260px);
    height: ; */
    padding-inline: clamp(35px, 2vw + 0.35rem, 150px);
    padding-block: clamp(10px, 0.5vw, 40px);
    font-size: inherit;
    background-color: transparent;
    border: none;
    color: white;
    border: solid 1px white;
    border-radius: calc(clamp(35px, 2vw + 0.35rem, 150px)/10);
    transition: all 150ms ease-out;
}

.generic_Button:hover {


    color: rgba(255, 0, 0, 0);
    /* border: solid 1px rgba(255, 0, 0, 0); */
    border-color: rgb(241, 150, 150);
    color: rgb(241, 150, 150);
    cursor: pointer;
}