* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  color: white;
}

/* Layout limpio que no rompe nada */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Centro real */
.content {
  text-align: center;
  margin-bottom: auto;
  margin-top: auto;
}

.logo {
  font-size: 64px;
  letter-spacing: 8px;
  margin-bottom: 30px;
}

.instagram {
  font-size: 16px;
  text-decoration: none;
  color: #888;
  transition: all 0.2s ease;
}

.instagram:hover {
  color: #fff;
}

/* Footer abajo sin romper nada */
.footer {
  text-align: center;
  padding: 20px 0;
}

.footer a {
  font-size: 12px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #aaa;
}