body {
  margin: 0;
  background-color: #212127;
}

h2,
p,
h3 {
  color: lightgray;
}

h1 {
  color: lightgray;
  font-family: "Modak";
  font-size: 100px;
}

h2 {
  font-size: 80px;
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

h3 {
  font-size: 25px;
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
  color: lightgray;
}

ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.logo img {
  height: 100px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: "Share Tech Mono", monospace;
}

.nav-link:hover {
  color: #888;
}

.content {
  padding: 40px;
  display: flex;
  align-items: center;
}
