body, html {
  padding: 0;
  margin: 0;
  font-size: 16px;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

h1 {
  font-size: 3rem;
}

p {
  font-size: 2rem;
}

#waffenAuswahl h1, #waffenAuswahl p {
  padding: 0 0 0 1.75rem;
}

#jessysWeapons h1, #jessysWeapons p {
  padding: 0 0 0 1rem;
}

.weaponList {
  width: 40vw;
  height: 75vh;
  overflow: auto;
  min-width: 550px;
  padding: 0 0 0 1rem;
}

.weaponList li {
  list-style: none;
  font-size: 2.5rem;
  background-color: rgb(78, 78, 78);
  padding: 5px;
  margin: .75rem;
  height: 150px;
}

.weaponList li:hover {
  background-color: #755;
  outline: 5px solid #700;
}

.weaponList li img {
  margin-right: 2rem;
}

.weaponList li span {
  display: inline;
  top: -3.5rem;
  position: relative;
  color: rgb(228, 228, 228);
}

#handtasche {
  width: 40vw;
  height: 80vh;
  overflow: auto;
  min-width: 550px;
  padding: 0 1rem 0 0;
}

.selected { 
  opacity: 0.5; 
  pointer-events: none; 
}
 