html, body {
    margin: 0;
    padding: 0
}
a {
    color: #27B376
}
a:hover, a:focus, .btn-link:hover {
    color: #BF212F;
}

body, .background-radial-gradient {
    min-width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.background-radial-gradient {
    background-image: url(../img/background.webp);
    background-size: cover;
    /*background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;*/
   /* 
  background-repeat: no-repeat !important;
  background-position: top left;
  background-size: 110% 100%;
  animation: mymove 20s infinite;
  background-attachment: fixed;*/
   
   background-size: cover; /* Ensure the image covers the container */
   background-position: center; /* Center the image */
   animation: zoom-in-out 10s ease infinite alternate; /* Apply the animation */
}
@keyframes mymove {
  50% {background-position: top right;}
}
@keyframes zoom-in-out {
    0% {
        background-size: auto 100%; 
        background-position: 0 0;
    }
    100% {
        background-size: auto 110%; 
        background-position: 5% 5%;
    }
}
.bg-glass {
    /*background-color: hsla(0, 0%, 100%, 0.6) !important;*/
    /**backdrop-filter: saturate(200%) blur(25px);*/
    background-color: rgba(0,0,0,.4);
    color: #FFFFFF;
}
.red, .error {
    color: #BF212F
}
.green, .exito {
    color: #27B376
}
.btn-green, .btn-green-check:checked {
    background-color: #27B376;
    border-color: #27B376;
}
.btn-green:hover {
    background-color: #BF212F;
    border-color: #BF212F;
}
.texto-glass {
    color: hsla(0, 0%, 100%, 0.9) !important;
}
.shadow_black {text-shadow: #000 1px 0 10px; color: #FFFFFF;}
/*animacion con gift*/
.animated-text-container {
    text-align: left;
    color: #FFF;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    justify-content: center;
    letter-spacing: 1px;
}

.animated-text {
    font-family: "Playwrite ES", cursive;
    background-image: url(https://media.giphy.com/media/26BROrSHlmyzzHf3i/giphy.gif);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: lighter;
}
/* styling my button */

/*otra animacion*/
.wrapper {
    text-align: justify;
    font-weight: lighter;
    h1 {
        font-family: "Playwrite ES", cursive;
        color: #fff;
        font-size: 60px;
        font-weight: lighter;
        letter-spacing: initial;
        font-weight: lighter;
        background: linear-gradient(to right,#BF212F 10%, #27B376 50%, #BF212F 60%);
        background-size: auto auto;
        background-clip: border-box;
        background-size: 200% auto;
        color: #fff;
        background-clip: text;
        text-fill-color: transparent;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textclip 5s linear infinite;
        display: inline-block;
    }
}
@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/*OTRA ANIMACION*/
.shimmer {
    font-family: "Lato";
    font-weight: 300;
    font-size: 3em;
    margin: 0 auto;
    padding: 0 140px 0 0;
    display: inline;
    margin-bottom: 0;
}

.shimmer {
    text-align: center;
    color: rgba(255,255,255,0.1);
    background: -webkit-gradient(linear, left top, right top, from(#BF212F), to(#BF212F), color-stop(0.5, #27B376));
    background: -moz-gradient(linear, left top, right top, from(#BF212F), to(#BF212F), color-stop(0.5, #27B376));
    background: gradient(linear, left top, right top, from(#BF212F), to(#BF212F), color-stop(0.5, #27B376));
    -webkit-background-size: 125px 100%;
    -moz-background-size: 125px 100%;
    background-size: 125px 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-animation-name: shimmer;
    -moz-animation-name: shimmer;
    animation-name: shimmer;
    -webkit-animation-duration: 5s;
    -moz-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: #27B376;
}
@-moz-keyframes shimmer {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top right;
    }
}
@-webkit-keyframes shimmer {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top right;
    }
}
@-o-keyframes shimmer {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top right;
    }
}
@keyframes shimmer {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top right;
    }
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}