body {
  margin: 0 auto;
  padding: 0 4em;
  max-width: 40em;
  min-height: 100vh;
  background-color: black;
  color: #66EFBD;
}

html {
  background-color: black;
  background-image: url("assets/bg.gif");
}

.btn {
  border: 2px solid black;
  background-color: transparent;
  color: black;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
}

.headlist {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}

.redbutton {
  flex: 1 1 0;
  min-width: 0;
  padding: 10px;
  white-space: nowrap;
  font-size: clamp(1px, 3vw, 20px);
  overflow: hidden;

  background-image: url("assets/bg_dim.gif");
  border-color: red;
  color: red;
}

.redbutton:hover {
  background: red;
  color: black;
}

.responsive {
  width: 100%;
  height: auto;
}

.projectcapsule {
  width: 100%;
  height: auto;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container div {
  margin: 10px;
  padding: 20px;
  font-size: 24px;
}

.containerProject {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.containerProject div {
  margin: 10px;
  padding: 20px;
  font-size: 24px;
}

.containerProject .responsive {
  width: 200px;
  height: auto;
  flex-shrink: 5;
  display: block;
}

a {
  color: #FFFF66;
  font-weight: bold;
}

/* visited link */
a:visited {
  color: #66CCCC;
}

/* mouse over link */
a:hover {
  color: #FF0099;
}

/* selected link */
a:active {
  color: #D60000;
}

.pixelart {
  width: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

@media (max-width: 600px) {
  .containerProject {
    flex-direction: column;
  }
}