@font-face {
  font-family: Coolvetica_b;
  src: url("./fonts/CoolveticaRg-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("./fonts/CoolveticaRg-Regular.woff") format("woff"),
    url("./fonts/CoolveticaRg-Regular.ttf") format("truetype"),
    url("./fonts/CoolveticaRg-Regular.svg#CoolveticaRg-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  background-color: rgb(34, 34, 34);
  font-family: Coolvetica_b, Helvetica, sans-serif;
}
h1 {
  text-align: center;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 32px;
}
h1 a {
  color: burlywood;
}
.projects {
  display: flex;
  max-width: 900px;
  justify-content: center;
  margin: 0 auto;
}
.project {
  display: flex;
  flex-wrap: wrap;
  width: 200px;
  justify-content: center;
  margin: 0 16px;
}
.project img {
  width: 200px;
  border-radius: 10px;
  transition: border-radius 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.project-link {
  text-decoration: none;
}
.project-link:hover img {
  border-radius: 50px;
}
.project-link:hover .desc {
  transform: scale(1.1);
}
.project .desc {
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.project .title {
  color: #fff;
  font-size: 24px;
  margin-top: 12px;
  line-height: 26px;
}
.project .tags {
  color: #787878;
  font-size: 16px;
}
