html,
body,
.content {
  box-sizing: border-box;
  font-family: "Cardo", serif;
  height: 100%;
  color: #3e3e3e;
  background-color: #fdfbf4;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1 {
  margin: 0;
  font-size: 4em;
}

h2 {
  margin: 0;
  margin-bottom: 15px;
}

h3 {
  margin: 0;
  margin-bottom: 15px;
}

.index {
  display: grid;
  place-items: center;
  height: 100%;
}

.index-content {
  max-width: 400px;
  padding: 30px;
}

@keyframes fadeIt {
  0% {
    background-color: #fdfbf4;
  }
  25% {
    background-color: #0046dc;
  }
  75% {
    background-color: #ff0000;
  }
  100% {
    background-color: #fdfbf4;
  }
}

.police {
  background-image: none !important;
  animation: fadeIt 2s ease-in-out;
  animation-iteration-count: infinite;
}
.police .loiter {
  color: red;
}
