html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /*  margin-bottom: 60px;*/
    background-color: transparent;
}

@keyframes huerotate {
    0% {
        filter: hue-rotate(225deg);
    }

    50% {
        filter: hue-rotate(45deg);
    }

    100% {
        filter: hue-rotate(225deg);
    }
}

.super-ai-button {
    box-sizing: border-box;
    background: linear-gradient(225deg, #ED1C24 0%, #F30BC7 35%, #4D5DC0 50%, #1072D0 71%, #4BF3F6 100%);
    overflow: hidden;
    border-radius: 40px;
    margin: 0 auto;
    padding: 1px;
    cursor: pointer;
}

    .super-ai-button.animation {
        clip-path: inset(0px round 6px);
        animation: huerotate 2s infinite linear;
        filter: hue-rotate(360deg);
    }

    .super-ai-button .button-gradient {
        box-sizing: border-box;
        padding: 10px;
        background-color: #fff;
        padding: 5px 12px 5px 15px;
        border-radius: 40px;
        text-align: center;
    }
