p.alert {
	text-align: center;
	color: Blue;
	font-weight: bold;
	background-color: Yellow;
	}
h1 {
	color: red;
	font-size: large;
	font-family: "Times New Roman", Times, serif;
	border-top: thin ridge;
	background: White;
}

h2 {
	color: Navy;
	font-size: medium;
	border-top: thin groove;
	font-family: "Times New Roman", Times, serif;
}

p {
	font-family: "Times New Roman", Times, serif;
	color: Black;
}

a:link {
	font-family: "Times New Roman", Times, serif;
	color: blue;
	}

a:visited {
	font-family: "Times New Roman", Times, serif;
	color: blue;
}


a:hover {
	color: red;
}

a {
	text-decoration: none;
}

/*
404 Animation
*/
body {
  background: ;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.words {
  font-family: "Archivo Black", sans-serif;
  color: white ;
  font-size: 0;
  line-height: 1.5;
}

.words span {
  font-family: "Archivo Black", sans-serif;
  font-size: 5rem;
  display: inline-block;
  animation: move 3s ease-in-out infinite;
}

@keyframes move {
  0% {
    transform: translate(-30%, 0);
  }
  50% {
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.75);
  }
  100% {
    transform: translate(30%, 0);
  }
}

.words span:nth-child(2) {
  animation-delay: 0.5s;
}

.words span:nth-child(3) {
  animation-delay: 1s;
}

.words span:nth-child(4) {
  animation-delay: 1.5s;
}

.words span:nth-child(5) {
  animation-delay: 2s;
}

.words span:nth-child(6) {
  animation-delay: 2.5s;
}

.words span:nth-child(7) {
  animation-delay: 3s;
}




