
table, th, td {
  border: 3px solid black;
  border-color: white;
  border-collapse: collapse;
  color: #f2e5c2;
  background-color: #807d78;;
}

.splash {
  font-size: 69px;
  border-color: white;
  border-radius: 25px;
  padding: 2px 2px 2px 2px;
  border-top: 10px solid white;
  border-right: 10px solid white;
  border-bottom: 10px solid white;
  border-left: 10px solid white;
  color: #f2e5c2;
  background-color: #807d78;
  transition: 0.3s;
  width: 700px;
  
  -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;
}

.glow {
  -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;
}

p {
  font-size: 35;
  color: #f2e5c2;
}

h1 {
  color: #f2e5c2;
}

body {
  background-color: #6e3100;
}

a {
  color: #f2e5c2;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px grey, 0 0 40px grey, 0 0 50px grey;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px white, 0 0 40px white, 0 0 50px;
  }
}
