@font-face {
  font-family: "Orbitron";
  src: url("./Fonts/Orbitron/Orbitron-VariableFont_wght.ttf") format("woff2"),
    url("./Fonts/Orbitron/Orbitron-VariableFont_wght.ttf") format("woff");
  font-weight: normal, bold;
  font-style: normal;
}

header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  padding: 10px 20px;
  background-color: #2a282b;
  color: white;
  height: 150px;
  box-shadow: 0 2px 20px rgb(109 108 108);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.menu-button {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

h1 {
  text-align: center;
  font-family: var(--font-family);
  color: var(--primary-color);
  font-size: 2.5em;
}
h2 {
  text-align: center;
  color: var(--primary-color);
  padding-bottom: 48px;
}
.created-headline {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.2em;
}
h3 {
  color: white;
  padding-top: 24px;
}

nav a {
  margin: 0 15px;
  font-weight: bold;
  color: transparent;
  background-image: linear-gradient(
    to right,
    white 50%,
    var(--primary-color) 50%
  );
  background-size: 200% 100%;
  background-position: left;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.5s ease;
  text-decoration: none; /* optional: entfernt Unterstrich */
}

nav a:hover {
  background-position: right;
}
p {
  color: white;
}
.welcome-section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80vw;
}
.aot-container {
  padding-bottom: 72px;
  padding-top: 72px;
  display: flex;
  justify-content: flex-end;
  width: 80vw;
  max-width: 1440px;
  margin: 0 auto;
}
.welcome-container {
  text-align: center;
  margin-bottom: 100px;
}
.welcome-container p {
  color: white;
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto;
}
.project-section {
  align-items: center;
  padding-top: 16px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.project-cards-container {
  width: 80vw;
  max-width: 1440px;
}
.project-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.damncreative-description-section {
  align-items: center;
  padding-top: 16px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.damncreative-description p {
  width: 80vw;
  max-width: 1440px;
}
.techStack {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
footer {
  background-color: #2a282b;
  box-shadow: 0 2px 20px rgb(109 108 108);
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
}
.created-by-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.damncreative-logo-footer {
  width: 80px;
  height: 80px;
}
.follow-us-link-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.follow-us {
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.github-logo {
  width: 40px;
  height: 40px;
}
