body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 300;
  margin: 0;
}

.nav {
  display: flex;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
background-color: white;
border-radius: 1200rem;
  border: 1px solid black;
  overflow: hidden;
}
.nav a {
  padding: 1rem;
  text-decoration: none;
  color: black;
  letter-spacing: -0.4px;
}
.nav a:hover {
  background-color: black;
  color: white;
}


.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero h1 {
  letter-spacing: -1px;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content-container {
  max-width: 28rem;
  text-align: center;
}
.hero-image {
  width: 100%;
  object-fit: cover;
  object-position: center;
  max-height: calc(100vh - 3.5rem);
}
.tag {
  width: fit-content;
  margin: 0 auto;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tag img {
  width: 1.5rem;
}
.about {
  padding: 5rem;
  border-top: 1px solid black;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.about h2 {
  letter-spacing: -1px;
  margin-bottom: 1rem;
  border-bottom: 1px solid black;
  padding-bottom: 1rem;
}
.about-description p {
  margin: 1.5rem 0;
  color: #333;
}

.venture {
  margin-top: 1.5rem;
  border-bottom: 1px solid #000;

  padding-bottom: 1.5rem;
}
.venture:last-of-type {
  border-bottom: 0;
}
.venture-title {
  display: flex;
  justify-content: space-between;
}
.venture-title h3 {
  font-weight: 500;
  letter-spacing: -0.5px;
}
.venture-description {
  margin: 0.5rem 0 0 0;
  color: #444;
}

.media-item {
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
  border-bottom: 1px solid black;
  padding-bottom: 1.5rem;
}
.media-item p {
  color: #555;
}
.media-item h3 {
  font-weight: 500;
}
.media-item:last-of-type {
  border-bottom: none;
}

.none {
  display: none;
}
footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid black;
}

.quickvids {
  max-width: 100%;
  border-radius: 0.5rem; margin-top:2.5rem;
}
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-content {
    margin: 12rem 1.5rem;
  }
  .nav {
    top: 0;
    border-radius: 0;
}

@media (max-width: 800px) {
  .about {
    padding: 1.5rem;
  }
  .nav div {
    display: none;
  }
  .nav {
    justify-content: center;
  }
}
