body {
  background: #111;
  font-family: monospace;
  color: white;
  margin: 0;
  padding: 32px;
  display: flex;
  justify-content: center;
  
}

.container {
  background: #555;
  color: #CCC;
  width: 300px;
  padding: 32px;
  box-shadow: 
    inset 0 4px 10px rgba(0, 0, 0, 1); 
  position: relative;
  text-align: left;
}


.title {
  font-size: 32px;
  text-shadow: none;
  margin: 0;
}

.body-text {
  margin: 32px 0;
}

.box-with-shadow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 4px;
}

.boxes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
}

.image {
  width: 52px;
  height: 71px;
  margin-bottom: 8px;
}

a:link {
  color: #CCC;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #DDD;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #EEE;
  background-color: transparent;
  text-decoration: underline;
}
