/* Variables CSS */
:root {
  --font-8bit: "Press Start 2P", cursive;
}

/* background-color: #1a1a1a; /* Negro suave */
/* background-color: #0f0f0f; Negro más profundo */
/* background-color: #1c1c1e; Gris carbón */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-8bit);
}

body {
  background-color: #1d0926;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

  /* position: relative;
  z-index: 1; */
  min-height: 100vh;
  width: 100%;
  background-image: url("./assets/freepik__upload__35577.png");
  background-size: cover; /* Cubre toda la pantalla */
  background-repeat: no-repeat;
  /* background-color: rgba(235, 0, 0, 0.5); */
  background-position: center;
  /* background-attachment: fixed; Efecto parallax (opcional) */
}

.img-container {
  /* width: 100vw; */
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: start;
  background: transparent;
}

.img-container img {
  width: auto;
  height: 300px;
  object-fit: contain;
  border: solid 2px #f2059d;
  background: transparent;
}

.menu-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: transparent;
}

.navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.navigation button {
  background: transparent;
  border: 2px solid #05f25c;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.navigation button:hover {
  background-color: #05f244;
  color: #1d0926;
}
