/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #39ff14;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  line-height: 1.6;
  text-shadow: 0 0 2px #39ff14, 0 0 5px #39ff14;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  color: #ff0080;
  font-size: 40px;
  text-shadow: 0 0 10px #ff0080, 0 0 10px #ff0080;
}

main {
  display: flex;
  gap: 20px;
}

.blog {
  flex: 3;
  background: #111;
  padding: 20px;
  border: 2px solid #ff0080;
  box-shadow: 0 0 10px #ff0080;
}

.post {
  margin-bottom: 30px;
  /* border: 1px solid #eeeeee; */
  padding: 10px;
}

.post h2 {
  color: #00ffff;
  font-size: 14px;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #00ffff, 0 0 2px #00ffff;
}

.sidebar {
  flex: 1;
  background: #111;
  padding: 20px;
  border: 2px solid #00ffff;
  box-shadow: 0 0 10px #00ffff;
}

.sidebar h3 {
  font-size: 15px;
  margin-bottom: 15px;
  color: #ffcc00;
  text-shadow: 0 0 2px #ffcc00, 0 0 10px #ffcc00;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  color: #39ff14;
  text-decoration: none;
}

.sidebar a:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
}

footer {
  text-align: center;
  margin-top: 40px;
  color: #ffffff;
  font-size: 15px;
  text-shadow: 0 0 2px #ffcc00, 0 0 5px #ffcc00;
}

.big-hr {
  border: none;
  height: 5px;
  background-image: repeating-linear-gradient(
    90deg,
    #39ff14,
    #39ff14 10px,
    #000 15px,
    #000 15px
  );
  margin: 30px 0;
}


.small-hr {
  border: none;
  height: 2px;
  width: 90%;
  margin: auto;
  margin-bottom: 30px;
  background-image: repeating-linear-gradient(
    to right,
    white 0,
    white 5px,
    transparent 2px,
    transparent 20px
  );
}
