@import url('https://fonts.googleapis.com/css2?family=MS+Gothic&family=Courier+New&display=swap');

/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FUNDO CLÁSSICO NEOCITIES */
body {
  font-family: "Courier New", monospace;
  background: url("arcoiris.jpg"); /* textura leve opcional */
  background-color: #d6d6d6;

  color: #000;
  display: flex;
  justify-content: space-evenly;
}

/* 🔲 CONTAINER PRINCIPAL (layout fixo estilo 2000s) */
main {
  width: 1000px;
  display: grid;

  grid-template-columns: 220px 1fr 260px;
  grid-template-rows: auto auto auto;

  gap: 10px;

  margin-top: 10px;
}

/* 🟦 BARRA SUPERIOR (banner + menu strip) */
header {
  grid-column: 1 / 4;

  background: #000;
  color: #fff;

  border: 3px solid #fff;

  text-align: center;
  padding: 10px;

  font-family: "MS Gothic", monospace;
}

/* 🟨 MENUS LATERAIS */
.sobre,
.posts {
  background: #f2f2f2;
  border: 3px outset #ffffff;
  padding: 10px;

  font-size: 14px;
}

/* 🟩 MENU ESQUERDO estilo navegação */
.sobre {
  grid-column: 1;
  grid-row: 2 / 4;

  background: #e6f0ff;
}

/* 🟪 CONTEÚDO CENTRAL (principal) */
.posts {
  grid-column: 2;
  grid-row: 2;

  background: #ffffff;
  border: 3px inset #ccc;

  min-height: 400px;
}

/* 🟫 SIDEBAR DIREITA */
.contato {
  grid-column: 3;
  grid-row: 2 / 4;

  background: #fff0f5;
  border: 3px outset #fff;

  padding: 10px;
}

/* 🧠 TIPOGRAFIA estilo web antiga */
h1 {
  font-size: 22px;
  color: #00ffff;
  text-shadow: 1px 1px #000;
}

h2 {
  font-size: 16px;
  color: #0000ff;
  border-bottom: 1px dashed #999;
  margin-bottom: 5px;
}

h3 {
  font-size: 14px;
  color: #ff00ff;
}

p {
  font-size: 13px;
  line-height: 1.4;
}

/* 🔗 LINKS estilo anos 2000 */
a {
  color: #0000ee;
  text-decoration: underline;
}

a:visited {
  color: #551a8b;
}

a:hover {
  background: yellow;
  color: black;
}

/* 📦 CAIXAS estilo “frames” */
.posts,
.sobre,
.contato {
  box-shadow: 2px 2px 0 #000;
}

/* 🧷 BANNER estilo topo */
header::before {
  content: "★ WELCOME TO MY SITE ★";
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: #ff0;
}

/* 🎵 sensação portal antigo */
body::after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("arcoiris.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

  }