.ButtonLink {
    font-size: 25px;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0.3em 0.2em;
    text-align: center;
    text-decoration: none;
    transition-duration: 0.4s;
}

.ButtonLink__primary {
    background: transparent linear-gradient( 98deg, #40b1ba 0%, rgb(102, 224, 212) 50%, rgb(102, 224, 212) 100%) 0% 0% no-repeat;
    background-size: 200%;
    transition: background-position-x 0.4s ease;
    border: none;
    color: white;
    margin: 0.5em;
    justify-content: center;
}

.ButtonLink__primary_top {
    font-size: 25px;
    background: transparent linear-gradient( 98deg, #40b1ba 0%, rgb(102, 224, 212) 50%, rgb(102, 224, 212) 100%) 0% 0% no-repeat;
    background-size: 200%;
    transition: background-position-x 0.4s ease;
    border: none;
    color: white;
    margin: 0em 0 1em 0;
}

.ButtonLink__primary_bottom {
    background: transparent linear-gradient( 98deg, #40b1ba 0%, rgb(102, 224, 212) 50%, rgb(102, 224, 212) 100%) 0% 0% no-repeat;
    background-size: 200%;
    transition: background-position-x 0.4s ease;
    border: none;
    color: white;
    margin: 0em 0 1em 0;
    margin: auto;
}

.ButtonLink__primary:hover {
    background: transparent linear-gradient( 98deg, #40b1ba 0%, rgb(102, 224, 212) 50%, rgb(102, 224, 212) 100%) 0% 0% no-repeat;
    background-position-x: 100%;
}

.ButtonLink__primary_top:hover {
    background: transparent linear-gradient( 98deg, #40b1ba 0%, rgb(102, 224, 212) 50%, rgb(102, 224, 212) 100%) 0% 0% no-repeat;
    background-position-x: 100%;
}

.ButtonLink__primary_bottom:hover {
    background: transparent linear-gradient( 98deg, #40b1ba 0%, rgb(102, 224, 212) 50%, rgb(102, 224, 212) 100%) 0% 0% no-repeat;
    background-position-x: 100%;
}

.ButtonLink__secondary {
    padding: 0.2em 0.5em;
    color: black;
    border: 2px solid #40b1ba;
}

.ButtonLink__secondary:hover {
    background-color: #40b1ba;
    color: white;
}

@media (min-width: 900px) {
    .ButtonLink {
        justify-self: center;
        font-size: 45px;
    }
    .ButtonLink__secondary {
        align-self: center;
        margin-right: 0.5em;
    }
    .ButtonLink__primary {
        margin-top: 0;
    }
    .ButtonLink__primary_top {
        font-size: 45px;
    }
}

@media (min-width: 1200px) {
    .ButtonLink {
        font-size: 45px;
    }
    .ButtonLink__secondary {
        align-self: center;
        margin-right: 0.5em;
    }
    .ButtonLink__primary {
        margin-top: 0;
    }
}