body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #eef7e8;
  font-family: "Inter", sans-serif;
  background-color: #040608;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html {
  font-size: 67%; /* default is 16px, this makes 1rem = ~10.7px */
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  z-index: 100;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 400px;
  padding: 10px;
  border-radius: 24px;
  background-color: rgba(23, 27, 33, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.header-content a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  transition: all 0.5s ease;
}
.header-content a:hover {
  color: #86ff2d;
}
.front-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 5%;
}
.bigtext h1 {
  font-size: clamp(3.5rem, 6vw + 1rem, 9rem);
  font-weight: 900;
  font-style: italic;
  margin: 0 0 10px 0;
  letter-spacing: -2px;
}
.smalltext h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 10px 0;
  font-style: italic;
}
.interests {
  display: flex;
  gap: 30px;
}
.interests-text {
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: white;
  margin: 0 0 30px 0;
}
.skills {
  display: flex;
  gap: 30px;
}
.skills-text {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: white;
  margin: 0 0 30px 0;
}
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 5%;
}
.project {
  height: 100vh;
  width: 100vw;
}
.project h1 {
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 900;
  font-style: italic;
  margin: 0 0 10px 0;
  letter-spacing: -2px;
}
.project-content {
  padding: 0 5%;
}
.projects h2 {
  font-size: 2.5rem;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 10px 0;
  letter-spacing: -2px;
}
.projects h3 {
  background-color: #10140d;
  color: white;
  width: 25vw;
  height: auto;
  margin: 0 1%;
  border: 1px solid #86ff2d;
  border-radius: 8px;
  padding: 20px;
}
.midtext {
  width: 50vw;
  font-size: 2rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.social-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  transition: all 0.5s ease;
}
.social-contact-link:hover {
  color: #86ff2d;
  transform: translateX(4px);
}
