body {
  height: 100vh;
  overflow: hidden;
}
#bigBox{position: relative;
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
/* justify-content: center; */
align-items: center;
/* margin: 0 auto; */
overflow: scroll;
  background-image: url(/grafica/metal.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* border: 1px solid red; */

}



#menu{
    /* position: absolute; */
    /* bottom: -20%; */
    color: white;
    display: flex;
justify-content: right;
align-items: start;
    gap: 10px;
    margin-top: 10px;
    /* border: 1px solid red; */
    width: 100%;
    height: 100%;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    padding-right: 10px;

}

#menu li a{
  color: white;
  font-size: 1.5em;
}

#bodyBox {
  position: absolute;
  top:30%;
  max-width: 1600px;
max-height: 700px;
  /* left: 50%;
  transform: translate(-50%); */

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 710px;
  margin: 50px auto;
  aspect-ratio: 1525/700;
  overflow: hidden;
  overflow-y: scroll;
  clear: both;
  
  /* border: 1px solid red; */
}

/* Cross-browser compatible method */

#bodyBox {

  overflow: -moz-scrollbars-none;

  -ms-overflow-style: none;

}

#bodyBox::-webkit-scrollbar {

  display: none;

}



