/*
Theme Name: Old School Retro Theme
Description: A retro 90s-style WordPress theme with classic web design elements.
Author: 3ni9m4tic
Author URI: https://3ni9m4tic.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

*/
body {
  background-color: #0000AA;
  color: #FFFF00;
  font-family: 'Courier New', monospace;
  background-image: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
  background-repeat: repeat;
  margin: 0;
  padding: 20px;
}
a {
  color: #00FF00;
  text-decoration: underline;
}
.container {
  border: 3px double #FFFFFF;
  padding: 20px;
  background-color: #000033;
}
h1, h2 {
  color: #FF0000;
  text-align: center;
  text-shadow: 1px 1px #FFFFFF;
}
marquee {
  color: #00FFFF;
  font-size: 18px;
}
.blink {
  animation: blink 1s step-start infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}