
.roundedBtnNoFill {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    height: 40px;
    min-height: 40px;

    /* border-radius: 12px; */
    border-radius: 2em;
    text-decoration: none;
    color: var(--logo);
    border-style: solid;
    border-width: 1px;
    border-color: var(--logo);
    /* background-color: var(--background); */
    transition: .4s;
    margin: 10px;
    /* padding: 14px 80px; */
    width: 90%;
    font-weight:bolder;
    font-size: 16px;
    cursor: pointer;


}

.roundedBtnNoFill:hover {

    background: var(--logo);
    border-color: var(--logo);
    color: white;
    color: var(--ecritureOnLogoColor);
    transition: 0.4s;
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    .roundedBtnNoFill {

        width: 90%;
        height: 40px;
        min-height: 40px;

        transition: .4s;
        font-size:16px;
        font-weight:bolder;
    }
}