body {
  background-color: black;
  font-family: 'Cutive Mono', monospace;
  color: gray;

  display: flex;
  justify-content: flex-start;  
  align-items: center;         
  margin: 0;                   
  padding: 50px;     
  text-align: center;
  flex-direction: column;
}

h1 {
  margin-bottom: 50px;
}

.weapon-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
}

.weapon-block {
  width: 32%;             
  background: #111;
  border: 2px solid blue;
  padding: 20px;
  color: white;
  box-sizing: border-box;
  height: auto;          
  overflow: visible;     
}

.weapon-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.weapon-list.single-center {
  display: flex;
  justify-content: center;
}

.placeholder {
  width: 32%;             
  background: black;
  border: 2px black;
  padding: 20px;
  color: black;
  box-sizing: border-box;
  height: auto;          
  overflow: visible;   
}