@font-face {
	font-family: "Druk Wide";
	src: url('DrukWide-Medium.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
	font-family: "Inter UI";
	src: url('Inter-Bold.woff') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
	font-family: "Inter UI";
	src: url('Inter-Regular.woff') format('truetype');
  font-weight: regular;
  font-style: normal;
}
body{
    background-color: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
h1{
  margin-bottom: 70px;
  font-family: Druk Wide;
    font-size: 3vw;
}
h2{
  font-weight: bold;
}
main{
  width: fit-content;
}
.project{
  display: grid;
  grid-template-columns: 10vw 20vw 5vw 5vw;
  grid-column-gap: 20px;
  font-family: Inter UI;
  font-size: 1.3vw;
  line-height: 125%;
}
.project:not(:last-of-type){
  padding-bottom: 25px;
  border-bottom: 1px solid #b7b7b7;
}
.project:not(:first-of-type){
  padding-top: 25px;
}

@media only screen and (max-width: 800px){
  .project{
    grid-template-columns: 20vw auto 10vw 10vw;
  }
  body{
    margin: 0 20px;
  }
  h1{
      font-size: 2rem;
  }
  .project{
    font-size: 10px;
  }
}