/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: rgb(73 73 73 / 100%);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px; /* espacio alrededor del contenido */
}

p,
h1,
h2 {
  color: rgb(220 220 220 / 100%);
}

.link {
  color: rgb(98 179 38 / 100%);
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.link:hover {
  color: rgb(20, 1, 1);
}

header {
  margin-bottom: 20px;
}

.menu-container {
  border: 4px solid white;
  background-color: rgba(73, 73, 73, 0.6);
  padding: 30px;

  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  width: 70vw;
  max-width: 600px;

  /* Proporción menos ancha, tipo ventana 4:3 */
  aspect-ratio: 4 / 3;

  min-height: 250px;

  border-radius: 8px;
}

.menu-container img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-container img:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .menu-container {
    width: 90vw;
    max-width: none;
    aspect-ratio: 4 / 3;
    padding: 20px;
  }

  .menu-container img {
    width: 50px;
    height: 50px;
  }
}
