@import url(https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Titan+One&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap);
body {
    /* background-image: url('background.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
}

a {
    color: #0060b6;
    text-decoration: none;
}

a:hover {
    color: #fdffff;
    text-decoration: none;
    cursor: pointer;
}

/* CSS */
.button-85 {
    font-size: 37px;
    /* font-family: 'Indie Flower', cursive; */
    /* font-family: "Titan One", cursive; */
    font-family: 'Patrick Hand', cursive;
    width: 500px;
    /* height: 80px; */
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    color: rgb(2, 50, 68);
    background: #0b536c;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-85:before {
    content: "";
    background: linear-gradient(
        45deg,
        #ba3531,
        #f9b10a,
        #0f505e,
        #061e28,
        #177f50,
        #ba3531
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    -webkit-animation: glowing-button-85 20s linear infinite;
            animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@-webkit-keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1595bf;
    left: 0;
    top: 0;
    border-radius: 10px;
    border: none;
    outline: none;
}

.content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

