:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
}

body{
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.tableContainer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80vw;
}

.table{
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 8px;
}

.element {
  border: .15vw solid #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column-reverse;
  transition: transform 0.2s ease-in-out;
}

.elementAbbreviation{
  color: #ffffff;
  font-weight: 600;
  font-size: 2vw;
  margin: 0;
  margin-right: 4px;
  position: absolute;
  z-index: 1;
}

#gap-1{
  grid-column: 2 / 11;
  grid-row: 1;
}

#gap-2{
  grid-column: 4 / 9;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

h1{
  margin: 0;
  color: #ffffff;
  font-weight: 200;
  font-size: 3vw; /* Responsive font size */
}

.footer{
  display: flex;
  position: absolute;
  padding-bottom: 24px;
  bottom: 0;
}

.footerImage{
  width: 20px;
  padding-right: 5px;
  margin-top: -3px;
}

p{
  color: #8b8b8b;
  font-weight: 200;
  font-size: .8em;
}

.element:hover {
  transition: transform 0.2s ease-in-out;
  transform: scale(1.2);
  z-index: 999;
}
