body {
    background-image: url("../../assets/img/image.png"); /* Reemplaza con la ruta correcta */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Esto hace que la imagen sea estática */
    background-size: cover; /* Cubre toda la pantalla */
}

/* Capa negra transparente */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajusta el último valor (0.5) para controlar la transparencia */
    z-index: -1; /* Coloca la capa detrás de todo el contenido */
}

.contenedor-botones {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 200px;

    /* Centrado vertical y horizontal */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Ancho del 70% */
    width: 70%;
}

@media (max-width: 768px) {
    .contenedor-botones {
        width: 90%;
        max-height: 80%;
    }
}

.contenedor-botones button {
    flex: 1 0 150px;
    margin: 5px;
    padding: 10px;
    cursor: pointer;
}

a {
}

button {
    align-items: center;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    outline: 0;
    border: 0;
    padding: 1rem;
  }

  button a {
    color: #fff !important;
    text-decoration: none !important;
  }

  button:before {
    background-color: #fff;
    content: "";
    display: inline-block;
    height: 1px;
    margin-right: 10px;
    transition: all .42s cubic-bezier(.25,.8,.25,1);
    width: 0;
  }

  button:hover:before {
    background-color: #fff;
    width: 3rem;
  }