* {
  font-family: "DM Mono", monospace;

  font-optical-sizing: auto;
  font-style: normal;
}

body {
  margin: 0;
}
.hero-bg {
  background-image: url("/images/grid.svg");
  background-repeat: repeat;
  background-size: contain;
}

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem;
  min-height: 55vh;
}

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: -2.5px;
  line-height: 1.5;
  font-weight: 400;
}
.hero p {
  font-size: 1.5rem;
  line-height: 1.75;
  max-width: 900px;
  font-weight: 200;
  letter-spacing: -1px;
  color: #343434;
}

.navigation {
  display: flex;
  justify-content: space-between;

  align-items: center;
  border-bottom: 1px solid black;
}

.navigation a {
  padding: 1rem 1.5rem;
  color: blue;
  border-left: 1px solid black;
}
.navigation p {
  margin: 0;
  padding: 1rem 1.5rem;
  letter-spacing: -1.5px;
  border-right: 1px solid black;
}
.navigation nav {
  display: flex;
}

.featured {
  margin: 0 auto;
}

.featured-header {
  padding: 3rem;
  text-align: center;
  font-size: 2rem;
  letter-spacing: -1px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  margin-top: 0;
  margin-bottom: 3rem;
}

.featured-project {
  max-width: 1200px;
  margin: 3rem auto;
  border: 1px solid #000;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  border-radius: 7px;
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top: 1px solid black;
  margin-bottom: -5px;
}
.featured-co {
  height: 3rem;
  width: 3rem;
  border-radius: 8px;
}
.featured-co-container {
  display: flex;
  gap: 0.75rem;
  align-items: center;

  margin: 1.5rem;
}

.featured-heading {
  font-size: 1rem;
  margin: 0;
}

.featured-aside {
  margin: 0;
  color: gray;
}

.feature-guide {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  border-top: 1px solid lightgray;
}

.feature-guide div {
  padding: 1.5rem;
  border-right: 1px solid lightgray;
}
.feature-guide div:last-of-type {
  border-right: none;
}
.feature-hero {
  font-size: 2.5rem;
  letter-spacing: -2px;
  line-height: 1.4;
  padding: 2rem;
  border-top: 1px solid lightgray;
  padding-top: 1.5rem;
  margin: 0;
}

.tag {
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: #fff;
  border-radius: 12px;
  width: fit-content;
  align-items: center;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.tag-signal {
  height: 12px;
  width: 12px;
  background-color: green;
  border-radius: 1200px;
}
p.tag-text {
  margin: 0;
  font-size: 1rem;
}
.feature-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}
.feature-win {
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-text {
  animation: marquee 10s linear infinite;
}
