html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  h1{
        font-weight:bold;
        font-size:3.0rem;
        margin-block-end: 0px;
        padding:10px 0;
    }
    h5 {
        font-size: 38.4px;
    }
    .sbt {
        font-size: 28px;
    }
}


.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;
}

.glow {    
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #e60073, 0 0 4px #e60073, 0 0 5px #FFC90E, 0 0 6px #FFC90E, 0 0 7px #FFC90E;
    }

    to {
        text-shadow: 0 0 2px #fff, 0 0 3px #FFF200, 0 0 4px #FFF200, 0 0 5px #FFF200, 0 0 6px #FFC90E, 0 0 7px #FFC90E, 0 0 8px #FFC90E;
    }
}

.flash {
    animation-name: flash;
    animation-duration: 0.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes flash {
    from {
        color: red;
    }

    to {
        color: black;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
    h1 {
        font-weight: bold;
        font-size: 1.5rem;
        margin-block-end: 0px;
        padding: 10px 0;
    }
    h5 {
        font-size: 19.2px;
    }
    .sbt {
        font-size: 14px;
        margin-top: 10px;
    }
    .space{
        display:none;
    }
}