*{
  box-sizing: border-box;
  font-family: "Stack Sans Text", sans-serif;
    margin: 0;
    color: #EDEEE5;
}

body{
  width: 60%;
  margin-inline: auto;
  margin-top: 80px;
  background-color: #2B2B2B;
  margin-bottom: 100px;
}


h1, h2{
  font-family: "Stack Sans Headline";
  
}

h1{
  margin-bottom: 10px;
  font-size: 2.5rem;
}

h2{
  margin-top: 50px;
  margin-bottom: 20px;
}

h3{
  /* margin-bottom: 6px; */
  font-weight: 500;
}

p{
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.6;
}

.project-flexbox{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 2%;
  gap: 20px 20px;
}

article{
  width: 440px;
  width: 100%;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  gap: 0px;
  border-radius: 16px;
  overflow: hidden;
}

article:hover{
  scale: 1.01;
  transition-property: scale;
transition-duration: 200ms;
}

article:active{
  opacity: 0.8;
}

img{
  width: 100%;
}

a{
  text-decoration: none;
  width: fit-content;
  width: 45%;
}



.avatar-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-name img{
  width: 40px;
  height: 40px;
  border-radius: 100px;
}

.avatar-name p{
  opacity: 1;
}

.div-thumbnail-text{
  background-color: #3C3C3C;
  padding: 24px 30px;
  padding-top: 24px;
    display: flex;
  flex-direction: column;
  gap: 6px;
}

.div-thumbnail-text p{
  

}

.tags{
  display: flex;
  gap: 10px;
}

.highlight{
  display: inline-block;
  font-size: 0.9em;
  opacity: 1;
  width: fit-content;
  color: #F5C04F;
  font-weight: 400;
  padding: 8px 12px;
  margin-top: 4px;
  /* margin-left: 4px; */
  /* border-radius: 20px; */
  background-color: #2B2B2B;
}

.highlight-course{
  color: rgb(158, 168, 247);
}


.highlight-course-type{
  color: rgb(158, 247, 188);
}