body.programmer-page {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #1b2733;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #f8f9fe;
}

body.programmer-page * {
  box-sizing: border-box;
}

#programmer-page-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
  opacity: 0.18;
}

#home {
  transform: rotate(90deg);
  width: 64px;
  padding: 14px;
  position: fixed;
  top: 16px;
  left: 16px;
  border: 1px solid black;
  transition: 0.1s ease-in-out;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

#home:hover {
  background-color: rgba(0, 0, 0, 0.08);
  border-width: 2px;
}

#programmer-page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 80px;
}

#header {
  font-size: 15pt;
  padding: 20px 18px;
  background-color: rgba(0, 0, 0, 0.15);
  max-width: 520px;
}

#header h1 {
  margin: 0 0 8px;
}

#header h2 {
  margin: 6px 0 0;
}

#down-arrow {
  width: 120px;
  height: auto;
  display: block;
  margin: 24px auto 16px;
  filter: invert(0.5);
  transition: 0.1s ease-in-out;
}

#down-arrow:hover {
  filter: none;
}

.section {
  width: 100%;
  padding: 30px 0 50px 0;
  position: relative;
}

#about-me {
  color: #f8f9fe;
  background-color: #334a59;
  padding: 32px 24px 40px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

#about-me h1 {
  margin: 0 0 12px;
  font-size: 24pt;
}

#about-me p {
  font-size: 14pt;
  margin: 12px 0 18px;
}

#about-me p a {
  text-decoration: underline;
  color: inherit;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

#aws-badge,
#macalester-logo {
  width: 160px;
}

.logo-big {
  width: 160px;
  filter: drop-shadow(0 0 6px rgb(0 0 0));
  transition: 0.3s ease;
}

.logo-big:hover {
  filter: drop-shadow(0 0 3px rgb(255 255 255));
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

#about-me .contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

#linkedIn-logo,
#mail-logo {
  width: 42px;
  filter: brightness(0) invert(1);
}

#email-address {
  color: #f8f9fe;
  text-decoration: underline;
}

#projects {
  background-color: #f8f9fe;
  padding: 32px 0;
}

#experience-header h1 {
  font-size: 32pt;
  margin: 0 0 8px;
}

#projects hr {
  margin: 12px 0 32px;
  border: 0;
  border-bottom: 1px solid #d1d5db;
}

.project {
  margin: 20px 0 32px;
}

.project h2 {
  font-size: 22pt;
  color: black;
  font-weight: 800;
  margin: 0;
}

.project h3 {
  font-size: 15pt;
  color: gray;
  margin: 4px 0;
}

.project h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14pt;
  color: gray;
  margin: 2px 0 6px;
}

ul.project-details-list {
  list-style-type: disc;
  list-style-position: inside;
  margin: 8px 0 16px 0;
  padding: 0;
}

ul.project-details-list li {
  font-size: 13.5pt;
  margin: 6px 0;
}

ul.project-details-list li a {
  text-decoration: underline;
  color: inherit;
}

#other-info {
  background-color: #96777c;
  color: #f8f9fe;
  padding: 22px;
  border-radius: 10px;
  margin-top: 16px;
}

#other-info p a {
  text-decoration: underline;
  color: inherit;
}

@media (max-width: 1024px) {
  #programmer-page-wrapper {
    padding: 70px 16px 60px;
  }

  #header {
    max-width: none;
  }

  #experience-header h1 {
    font-size: 26pt;
  }

  .project h2 {
    font-size: 18pt;
  }

  .project h3 {
    font-size: 14pt;
  }
}

@media (max-width: 640px) {
  #home {
    width: 54px;
    padding: 10px;
  }

  #programmer-page-wrapper {
    padding-top: 72px;
  }

  #about-me h1 {
    font-size: 20pt;
  }

  #about-me p {
    font-size: 13pt;
  }

  #experience-header h1 {
    font-size: 22pt;
  }

  .project h2 {
    font-size: 16pt;
  }

  .project h3,
  .project h4 {
    font-size: 13pt;
  }

  ul.project-details-list li {
    font-size: 12.5pt;
  }

  .badge-row {
    gap: 12px;
  }

  #aws-badge,
  #macalester-logo,
  .logo-big {
    width: 130px;
  }

  #down-arrow {
    width: 96px;
  }
}
