* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Share Tech Mono", monospace;
}

.share-tech-mono-regular {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 6rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 4rem;
  margin-bottom: 10px;
}

h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header .logo {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-basis: 20%;
}
header .logo img {
  height: 50px;
  width: auto;
}
header .navi {
  flex-basis: 80%;
}
header .navi nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
header .navi nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
  font-family: "Share Tech Mono", monospace;
  font-weight: 300;
}
header .navi nav ul li a:hover {
  color: #007BFF;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .hero {
  width: 90dvw;
  height: 90dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 4px solid #000;
  background-color: #fff;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}
main .hero img {
  -o-object-fit: cover;
     object-fit: cover;
}
main .hero button {
  padding: 15px 30px;
  background: #000000;
  border: none;
  border-radius: 5px;
}
main .hero button a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
main .hero button:hover {
  background-color: #0056b3;
}
main .hero .chev {
  position: absolute;
  rotate: 180deg;
  top: 86%;
  left: calc(50% - 64px);
  animation: bounce 0.5s infinite;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
main .bio, main .jobs {
  width: 90dvw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 4px solid #000;
  background-color: #fff;
  margin: 2rem 0;
  padding: 2rem 5rem;
}
main .bio h2, main .bio h3, main .jobs h2, main .jobs h3 {
  margin-bottom: 2rem;
}
main .bio p, main .jobs p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #000;
  width: 100%;
}
main .jobs {
  margin-top: 0;
}
main .jobs h3 {
  margin-bottom: 0;
}
main .flex-cards {
  width: 90dvw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
main .flex-cards .card {
  width: 30%;
  min-height: 50dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 4px solid #000;
  border-radius: 30px;
  margin-bottom: 2rem;
  overflow: hidden;
}
main .flex-cards .card img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  transform: scale(0.9);
}
main .flex-cards .card .card-text {
  padding: 20px;
}
main .flex-cards .card .card-text h4 {
  text-align: left;
  font-size: 1.5rem;
  padding: 20px 30px 10px 30px;
}
main .flex-cards .card .card-text p {
  text-align: left;
  font-size: 1.1rem;
  padding: 0 30px;
  margin-bottom: 20px;
  line-height: 1.4;
}
main .flex-cards .card .project-link,
main .flex-cards .card button {
  padding: 12px 20px;
  background: #000000;
  border: none;
  border-radius: 5px;
  color: #fff;
  width: calc(100% - 60px);
  margin: auto 30px 30px 30px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  text-align: center;
}
main .flex-cards .card .project-link:hover,
main .flex-cards .card button:hover {
  background-color: #e3ad40;
  color: #000;
}

html {
  --s: 113px;
  --c1: #403b33;
  --c2: #e3ad40;
  --g:,var(--c1) 25%,#0000 0;
  background: conic-gradient(from 45deg at 75% 75% var(--g)), conic-gradient(from 135deg at 25% 75% var(--g)), conic-gradient(from -45deg at 75% 25% var(--g)), conic-gradient(from 225deg at 25% 25% var(--g)), repeating-conic-gradient(from -45deg, var(--c1) 0 45deg, var(--c2) 0 50%);
  background-size: var(--s) var(--s);
}

footer {
  width: 90dvw;
  margin: 0 auto 2rem auto;
  background-color: #000000;
  border: 4px solid #000;
  border-radius: 30px;
  color: #fff;
  padding: 2rem 3rem;
  box-sizing: border-box;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
footer .footer-content p {
  margin: 0;
  font-size: 1rem;
  color: #a0a0a0;
}
footer .footer-content .footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .footer-content .footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
footer .footer-content .footer-social a:hover {
  color: #e3ad40;
}
footer .footer-content .footer-social .separator {
  color: #555;
}
footer .footer-content .footer-copy p {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.navi {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.navi nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.leia-image {
  position: fixed;
  top: 50dvh;
  left: 0;
  width: 120px;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.evey-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.link {
  color: #2724ca;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  background-color: #b4b4b4;
  padding: 2px;
}

.ticker-wrap {
  width: min(100%, 720px);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 1;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.artie {
  color: #fff;
  margin: 0;
  padding: 0.55rem 3rem 0.55rem 0;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=style.css.map */