body {
  background-color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  margin: 24px;
  color: #FFF;
  user-select: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

section {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 1000px;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 4px;
  transition-duration: 0.1s;
  width: 200px;
  background-color: #282828;
  position: relative;
}

.app:hover {
  background-color: #333;
}

.app img {
  width: 50px;
}

.app img + img {
  position: absolute;
}

a {
  color: #CCC;
  text-decoration: none;
}

h4 {
  margin: 0;
  font-weight: normal;
}

h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
  color: #AAA;
  letter-spacing: 2px;
  font-size: 18px;
}