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

/* BODY */
body {
  background: #f5d6c6;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #ff8fb8;
}

/* PAGE */
#page {
  width: 900px;
  margin: 20px auto;
}

/* HEADER */
.header {
  background: #caa47a;
  border: 4px solid #f2a8c2;
  padding: 20px;
  text-align: center;
  margin-bottom: 15px;
}


.header h1 {
  font-size: 26px;
  color: #ff9ccf;
  letter-spacing: 3px;
}

/* LAYOUT */
.layout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 15px;
}

/* BOX STYLE */
.box {
  background: #3a2f45; /* morado oscuro cool */
  border: 3px solid #f2a8c2;
  padding: 12px;
  box-shadow:
  4px 4px 0 #ff9ccf,
  -2px -2px 0 #3a2f45;
}
.nav li {
  box-shadow:
  inset 0 0 0 2px #ffd6e6,
  0 2px 0 #e9b3c8;
  background: #e7d8c6;
  color: #ff79b0;
  border: 2px solid #f2a8c2;

  padding: 10px 14px;   /* más gorditos */
  margin-bottom: 8px;

  border-radius: 14px; /* 🔥 ESTO los hace sugarangel */
  text-align: center;
  text-shadow: 1px 1px 0 #3a2f45;
  letter-spacing: 1px;
}

/* CONTENT */
.content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* WELCOME */
.welcome h2 {
  font-size: 24px;
  color: #ff8fc4;
  text-align: center;
  margin-bottom: 10px;
}

.welcome p {
  color: #9fd8ff;
  text-align: center;
  line-height: 1.6;
}

/* HEADINGS */
h2 {
  font-size: 12px;
  color: #ff7fbf;
  margin-bottom: 10px;
}

h3 {
  font-size: 11px;
  color: #ffd1e8;
  margin-bottom: 8px;
}

/* TEXT */
p {
  color: #e6e0ff;
  line-height: 1.6;
}
.left-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-box img:not(.gif):not(.gif-med):not(.gif-big) {
  width: 100%;
  display: block;
  image-rendering: pixelated;
}
.side {
  align-self: start;
  /* gif pequeño (emojis) */
.gif {
  width: 14px;
  height: 14px;
  image-rendering: pixelated;
  vertical-align: middle;
}

/* gif mediano */
.gif-med {
  width: 40px;
  image-rendering: pixelated;
}

/* gif grande */
.gif-big {
  width: 120px;
  image-rendering: pixelated;
}
/* gif pequeño (emoji) */
.gif {
  width: 14px !important;
  height: 14px !important;
  vertical-align: middle;
  image-rendering: pixelated;
}

/* gif mediano */
.gif-med {
  width: 40px !important;
  height: auto;
  image-rendering: pixelated;
}

/* gif grande */
.gif-big {
  width: 120px !important;
  height: auto;
  image-rendering: pixelated;
}
}
 */
 