body {
  padding: 0 128px;
}

.nerd {
  font-family: "VT323"
}

.hidden {
  opacity: 0;
}

#hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero h1 {
  font-size: clamp(1.5em, 4vw, 8rem);
  letter-spacing: 3px;
}

#hero svg {
  position: absolute;
  top: 75%;
  transition: opacity 0.6s;
}

.typed-cursor {
  font-size: inherit;
  line-height: 1;
  vertical-align: top;
  font-size: 80px;
}

.button {
  font-family: "Geist Mono", monospace;
  text-decoration: none;
  background-color: black;
  color: white;
  transition: transform 0.3 ease;
  padding: 10px 15px;
}

#contact-btn {
  position: fixed;
  text-decoration: none;
  position: fixed !important;
  right: 30px;
  top: 20px;
}

.button:hover {
  transform: scale(0.95);
}

h2, h3 {
  font-family: "Geist Mono", monospace;
  
}

h2 {
  color: grey;
  font-size: 16px;
}

h3 {
  font-size: 16px;
}

header {
  display: flex;
  justify-content: flex-end;
}

p {
  font-family: "Inter", sans-serif;
  max-width: 600px;
}

section {
  margin-bottom: 30vh;
}

.badges {
  margin: 20px;
}

.badge {
  font-family: "Geist Mono", monospace;
  color: grey;
  text-decoration: none;
  border: 1px solid grey;
  padding: 5px;
  font-size: 10px;
}

.project-link {
  text-decoration: none;
  color: black    
}

.find-out-more {
  display: inline-block;
  margin-right: 10px;
  /* color: grey; */
  font-family: "Inter", sans-serif;
  color: black;
  text-decoration: none;
}

.find-out-more:hover {
  text-decoration: underline;
}

.projects {
  flex-direction: column;
}

.content {
  display: flex;
  align-items: center;
  /* gap: 20px; */
}

.text {
  display: flex;
  gap: 50px
}

.project {
  position: relative;
  padding: 40px 12px;
}

.project::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: grey;
  transform: scaleY(0);
  transform-origin: bottom;
  filter: blur(0.75px);
  z-index: 1;
}

a:hover .project::before,
.project:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

a:hover .project,
.project:hover {
  background: linear-gradient(
    90deg,
    rgba(230, 27, 27, 0.03) 0%,
    transparent 50%
  );
}

footer {
  display: flex;
  align-items: center;
  flex-direction: column;
}

footer .socials {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

footer a {
  color: black;
  font-family: "Geist Mono", monospace;
}

.mf-cursor {
  width: 80px;
  height: 80px;
}

#contact-section {
  display: flex;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;

}

#contact-title {
  font-family: "Geist Mono", monospace;
}

#socials {
  display: flex;
}

.social {
  margin: 50px;
  width: 150px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.social p {
  white-space: nowrap;
}

.social svg {
  width: 3em;
}

@media screen and (max-width: 1045px) {
  body {
    padding: 25px
  }

  .typed-cursor {
    font-size: clamp(2.2rem, 4vw , 80px)
  }

  section {
    flex-direction: column;
    margin-bottom: 10vh;
  }

  .content, .text {
    flex-direction: column;
    align-items: start;
  }

  .text {
    gap: 0;
    padding: 0;
  }
   
  .project {
    padding: 10px;
  }

  .badges {
    margin: 0;
  }

  #contact-btn {
    opacity: 0;
  }

  #socials {
    flex-direction: column;
  }
  
}