/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  text-align: center;
  padding: 12px;
  background-color: Black;
  color: red;
  font-family: "Consolas";
  text-shadow: 2px 2px 4px black;
}

input {
  border: 1px outset red;
  background-color: Black;
  color: red;
}

button {
  border: 1px outset red;
  background-color: Black;
  color: red;
}

#demo {
  white-space: pre-wrap;
}

@keyframes Hover {
  from {
    transform: translateY(-8px);}
  to {
    transform: translateY(0px);}
}

.logo {
  width: 35%;
  height: 35%;
  animation: Hover 5s ease-in-out infinite alternate;
}

.glow {
  color: red;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  -moz-animation: glow 2s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 2px #ff0000, 0 0 2px #ff0000, 0 0 2px #ff0000, 0 0 2px #ff0000, 0 0 2px #ff0000, 0 0 2px #ff0000, 0 0 2px #ff0000;
  }
  to {
    text-shadow: 0 0 0px #000000, 0 0 0px #000000, 0 0 0px #000000, 0 0 0px #000000, 0 0 0px #000000, 0 0 0px #000000, 0 0 0px #000000;
  }
}

p {
  font-size: 20px;
}

hr {
  border-color: red;
}

h1 {
  font-size: 38px;
}

#LINK {
  font-size: 24px;
}

#LINK:link {
  color: yellow;
}

#LINK:visited {
  color: pink;
}

#LINK:hover {
  color: white;
}

div {
  background-color: black;
  padding: 12px;
  margin: 12px;
  border: 1px outset red;
}