/* 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." */

  @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  background-color: #000000;
  background-image: url('https://files.catbox.moe/gxlh56.webp');
  background-size: 750px;
  background-attachment: fixed;
  color: #ffffff;
  font-family: 'Share Tech Mono', monospace;
  text-align: center;
  margin: 0;
  padding: 20px;
}

h1 {
  color: #ffe800;
  font-size: 2em;
  animation: shake 0.4s infinite;
}

@keyframes shake {
  0%   { transform: translate(1px, 1px) rotate(0deg); }
  10%  { transform: translate(-1px, -2px) rotate(-1deg); }
  20%  { transform: translate(-3px, 0px) rotate(1deg); }
  30%  { transform: translate(3px, 2px) rotate(0deg); }
  40%  { transform: translate(1px, -1px) rotate(1deg); }
  50%  { transform: translate(-1px, 2px) rotate(-1deg); }
  60%  { transform: translate(-3px, 1px) rotate(0deg); }
  70%  { transform: translate(3px, 1px) rotate(-1deg); }
  80%  { transform: translate(-1px, -1px) rotate(1deg); }
  90%  { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

h2 {
  color: #ffe800;
  background: linear-gradient(#f4fc92, #ffe800);
  color: black;
  padding: 4px 10px;
  display: inline-block;
}

nav {
  margin-bottom: 20px;
}

nav a {
  color: #ffe800;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.1em;
}

nav a:hover {
  text-shadow: 0 0 8px #ffe800;
}

a {
  color: #ffe800;
  text-decoration: none;
}

section {
  border: 2px solid #ffe800;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  background-color: rgba(0, 0, 0, 0.75);
}
  
  
  
  
  