html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
    background-color: #F4F2EE !important;
}

.container {
    background-color: #fff !important;
    max-width: 800px !important;
}

.form-dark {
    background-color: #1c2a32;
    color: #ffffff;
}

.text-white {
    color: #fff !important;
    animation: glow 1s ease-in-out infinite alternate !important;
}

.btn-black {
    color: #ffffff !important;
    background-color: #000000 !important;
}

.badge {
    display: inline-block;
    padding: 8px 16px 8px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}

.badge-secondary {
    color: #000000 !important;
    background-color:rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #000;
        /*text-shadow: 0 0 3px #fff, 0 0 2px #fff, 0 0 6px #333, 0 0 4px #333, 0 0 5px #333, 0 0 6px #333, 0 0 70px #000;*/
    }

    to {
        text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #000;
    }
}