* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy";
}

a {
  text-decoration: none;
  color: black;
}

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(24, 65, 73);
}

.project-list {
  height: auto;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  border: 2px solid black;
  box-shadow: 7px 7px 0px 0px black;
  color: silver;
}

.project-list > li > a {
  color: silver;
  transition: all 0.3s ease;
}

.project-list > li > a:hover {
  color: slateblue;
}
