* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 62.5%;
  font-family: "Estedad";
}

@font-face {
  font-family: "Estedad";
  src: url("../fonts/Estedad-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}

.websites {
  display: grid;
  /* position: absolute;
  top: 50%;
  left: 50%; */
  /* transform: translate(-50%, -50%); */
  grid-template-columns: repeat(3, 1fr);
  max-width: 120rem;
  justify-content: center;
  column-gap: 3rem;
  margin: 9rem auto;
}

.project {
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  row-gap: 2rem;
  font-size: 4rem;
  background-color: #eee;
  border-radius: 5px;
  /* box-shadow: 0 2rem 5rem rgba(#000, 0.2); */
}
.img {
  width: 60rem;
  height: 30rem;
}
.link:link,
.link:visited {
  text-decoration: none;
  color: blueviolet;
}
