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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

a{
    font-size:16px;
    font-weight:bolder;
}


/* Highlight animation for the active video */

/*.youtube-playing {
    box-shadow: 0 0 20px 5px #00ff00;*/ /* green glow */
    /*border-radius: 10px;
    transition: box-shadow 4s ease-in-out;
}*/

/* Red flash for 1 second, then green */
/*@keyframes flashRedGreen {
    0% {
        box-shadow: 0 0 25px 6px red;
    }

    50% {
        box-shadow: 0 0 25px 6px limegreen;
    }

    75% {
        box-shadow: 0 0 25px 6px black;
    }

    100% {
        box-shadow: 0 0 25px 6px red;
    }
}*/

/* Class to start the flash effect */
.youtube-flash {
    animation: flashRedGreen 1s infinite;
    border-radius: 10px;
}

.youtube-end {
    border-radius: 10px;
    box-shadow: 0 0 25px 6px red;
}


@keyframes flashRedGreen {
    0%, 100% {
        box-shadow: 0 0 25px 6px red;
    }

    50% {
        box-shadow: 0 0 25px 6px limegreen;
    }
}

.sermon.youtube-flash {
    animation: flashRedGreen 2s infinite;
    border-radius: 10px;
}

/* Apply same flash when fullscreen */
.sermon.youtube-fullscreen.youtube-flash {
    animation: flashRedGreen 2s infinite;
    box-shadow: 0 0 50px 10px limegreen;
}

/*End Of animation*/


.sermon {
    padding:.5%;
}