:root {
    --primary: #f16d8c;
    --primary-hover: red;
    --secondary: #f16d8c;
    --secondary-hover: #9828c7;
    --text2: white;
    --text: black;
}

.btnn-jump {
    animation: pulse 1100ms infinite;
    font-size: 1.5em;
}

@keyframes pulse {
    0% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(.8);
    }
}

.btn-primary {
    display: none;
}

@media only screen and (max-width: 760px) {
    .btn-secondary {
        font-size: 5vw !important;
        font-weight: 600 !important;
    }
}
