/* --- Y2K / CYBER-POP --- */

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #0d001a;
  background-image: url("/images/star_bg.png"),
                    radial-gradient(circle, #2e0854 0%, #0d001a 100%);
  background-repeat: repeat, no-repeat;
  background-position: top left, center;
  background-attachment: fixed;

  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;

  max-width: 850px;
  margin: 0 auto;
  padding: 20px;
}

/* --- HEADER --- */

header {
  text-align: center;
  background: #cc0099;
  border: 3px outset #ff99eb;

  padding: 14px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'VT323', monospace;
  font-size: 3.5rem;

  color: #00ffff;
  text-shadow:
    2px 2px 0 #ff007f,
    -2px -2px 0 #000000;

  margin: 0;
  letter-spacing: 3px;
}

.subtitle {
  color: #ffff00;
  font-weight: bold;
  font-size: 1.05rem;

  margin-top: 4px;
}

/* --- NAVIGAZIONE --- */

nav ul {
  list-style: none;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 6px;
  margin-bottom: 25px;
}

nav li {
  margin: 0;
}

nav a {
  display: block;

  background: #c0c0c0;
  color: #000080;

  font-weight: bold;
  text-decoration: none;

  padding: 7px 14px;

  border: 2px outset #ffffff;

  font-size: 0.95rem;
  text-transform: uppercase;
}

nav a:hover {
  background: #ff007f;
  color: #ffffff;
  border-style: inset;
}

/* --- BOX --- */

.box {
  background: rgba(20, 0, 35, 0.88);

  border: 2px solid #00ffff;
  border-radius: 6px;

  padding: 18px;
  margin-bottom: 22px;
}

h2 {
  color: #ff66cc;

  font-family: 'VT323', monospace;
  font-size: 2.2rem;

  border-bottom: 2px dashed #00ffff;

  padding-bottom: 4px;
  margin-top: 0;
  margin-bottom: 15px;
}

h3 {
  color: #00ffff;

  font-size: 1.15rem;
  margin-top: 15px;
}

/* --- TESTO --- */

p,
li {
  line-height: 1.5;
  font-size: 0.95rem;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 7px;
}

li::marker {
  color: #ff007f;
}

/* --- LINK --- */

a {
  color: #00ffff;
  font-weight: bold;
}

a:hover {
  color: #ffff00;
  background: #ff007f;
  text-decoration: none;
}

/* --- IMMAGINI --- */

img,
.img-container img {
  max-width: 100%;
  height: auto;

  border: 3px solid #ff007f;
  outline: 1px solid #00ffff;

  box-shadow: 4px 4px 0 #000000;
}

/* --- SIDEBAR --- */

aside.box {
  border-color: #ffff00;
}

aside h3 {
  color: #ffff00;
}

/* --- FOOTER --- */

footer {
  text-align: center;

  font-size: 0.85rem;
  color: #ff99eb;

  margin-top: 35px;
  padding: 14px;

  border-top: 2px solid #ff007f;

  background: rgba(0, 0, 0, 0.5);
}