.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-items: center;
}

.terminal-grid {
  width: 300px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 50.0);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.terminal {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 50.0);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.selectable {
  cursor: pointer;
}

.terminal-title-bar {
  background-color: #1E1E1E;
  color: #d1ce9f;
  font-family: 'Courier New', Courier, monospace;
  border: 1px solid #000000;
  border-radius: 5px 5px 0px 0px;
  font-size: 20px;
  line-height: 25px;
}

.terminal-content {
  background-color: #3C3C3C;
  text-align: left;
  border: 1px solid #000000;
  font-size: 12px;
  padding: 5px;
  height: 100%;
}

.terminal-info-bar {
  color: white;
  font-family: 'Courier New', Courier, monospace;
  border: 1px solid #000000;
  font-size: 15px;
  line-height: 20px;
}

.category {
  background-color: #2e4f5f;
}

.language {
  background-color: #2e5f54;
}

.download {
  background-color: #4b2e5f;
  text-align: center;
}

.images {
  padding-top: 15px;
  border: 0px solid #000000;
  text-align: center;
}

ul {
  list-style: none;
}

ul li::before {
  content: ">";
  color: #d1ce9f;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

.terminal-content img {
  display: block;
  margin-left: auto;
  margin-right:auto;
  max-width: 90%;
  max-height: 50%;
  border: 2px solid #808080;
}