* {
  box-sizing: border-box;  
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Courier New', Courier, monospace;
  background-color: #111;
  color: #fff;
  background-image: linear-gradient(to right, rgba(255,255,255,0.1) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.container {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.links {
  margin-top: 10px;
  a {
    text-decoration: none;
  }
  img {
    width: 40px;
    height: 40px;
    fill: red;
    filter: 
      invert(67%) 
      sepia(17%) 
      saturate(7287%) 
      hue-rotate(216deg) 
      brightness(90%) 
      contrast(88%);
  }
}

.content {
  position: relative;
}

.header-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.img {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid #9d7cd8;
}

#projects {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}

.wrapper {
  width: 30vw;
  min-height: 300px;
  height: auto;
  border: 1px solid #9d7cd8;
  margin: 5px;
  padding: 5px;
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  #projects {
    flex-direction: column;
    align-items: center;
  }
  .wrapper {
    width: 80%;
  }
}

.img-wrapper {
  width: 100%;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3;
  border: 1px solid #9d7cd8;
}

.description {
  margin-top: 5px;
  margin-bottom: 5px;
  background: #222;
  width: 100%;
  min-height: 150px;
  padding: 5px;
  border: 1px solid #9d7cd8;
  word-break: break-all;
}

h3 {
  margin: 0;
}


.label-wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
small {
  padding: 5px;
  border: 1px solid #9d7cd8;
}


.wrapper small:not(:last-child) {
  margin-right: 10px;
}
