@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@media (prefers-reduced-motion: reduce) {
  .imgArchive:hover,
  .videoArchive:hover {
    animation: none;
  }
}
*,
html,
body {
  margin: 0px;
  padding: 0px;
  font-family: "Inter";
}
h1 {
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
main {
  margin: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.introHero {
  font-size: 2rem;
  letter-spacing: -1px;
}
.headingProjects {
  font-size: 2rem;
  letter-spacing: -1px;
  background-color: black;
  color: white;
  width: fit-content;
  padding: 8px;
}
.projects {
  grid-template-columns: repeat(12, 1fr);
  display: grid;
  gap: 32px;
}
.subProjects {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border: solid 2px black;
}
.wrapSubProjects {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project {
  font-size: 2rem;
  letter-spacing: -1px;
  border: solid 2px black;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 96px;
  box-sizing: border-box;
  text-decoration: none;
}
.project:hover {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.inactive {
  cursor: not-allowed;
}
.inactive:hover {
  background-color: black;
  color: white;
  text-decoration: underline;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  html {
    font-size: 14px;
  }
  main {
    margin: 32px;
    gap: 32px;
  }
  .subProjects {
    padding: 24px;
    gap: 24px;
  }
  .project {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .projects {
    display: flex;
    flex-direction: column;
  }
  main {
    margin: 16px;
    gap: 64px;
  }
  .subProjects {
    padding: 16px;
    gap: 16px;
  }
  .headingProjects {
    font-size: 1.5rem;
  }
  .project {
    height: 64px;
    font-size: 1.5rem;
  }
  .projects {
    gap: 64px;
  }
}
