.menu-btn {
  position: absolute;
  z-index: 3;
  right: 35px;
  top: 35px;
  cursor: pointer;
  transition: all 0.5s ease-out;
}
.menu-btn .btn-line {
  width: 28px;
  height: 3px;
  margin: 0 0 5px 0;
  background: #fff;
  transition: all 0.5s ease-out;
}
.menu-btn.close {
  transform: rotate(180deg);
}
.menu-btn.close .btn-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.close .btn-line:nth-child(2) {
  opacity: 0;
}
.menu-btn.close .btn-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.menu {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0.9;
  visibility: hidden;
}
.menu.show {
  visibility: visible;
}
.menu-branding, .menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}
.menu-nav {
  margin: 0;
  padding: 0;
  background: #373737;
  list-style: none;
  transform: translate3d(0, -100%, 0);
  transition: all 0.5s ease-out;
}
.menu-nav.show {
  transform: translate3d(0, 0, 0);
}
.menu-branding {
  background: #444;
  transform: translate3d(0, 100%, 0);
  transition: all 0.5s ease-out;
}
.menu-branding.show {
  transform: translate3d(0, 0, 0);
}
.menu-branding .portrait {
  width: 250px;
  height: 250px;
  background: url("https://imgur.com/6KWAbrZ.jpg");
  border-radius: 50%;
  border: solid 3px #00f5d4;
}
.menu .nav-item {
  transform: translate3d(600px, 0, 0);
  transition: all 0.5s ease-out;
}
.menu .nav-item.show {
  transform: translate3d(0, 0, 0);
}
.menu .nav-item.current > a {
  color: #00f5d4;
}
.menu .nav-link {
  display: inline-block;
  position: relative;
  font-size: 30px;
  text-transform: uppercase;
  padding: 1rem 0;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease-out;
}
.menu .nav-link:hover {
  color: #00f5d4;
}

.nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal/NeueMontreal-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal/NeueMontreal-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal/NeueMontreal-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal/NeueMontreal-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal/NeueMontreal-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal/NeueMontreal-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal/NeueMontreal-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
:root {
  --primary-color: #444;
  --accent: #00f5d4;
}

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f0f0f, #1b1b1f, #191a20);
  font-family: "Neue Montreal", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  height: 100%;
  margin: 0;
  line-height: 1.5;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='table' tableValues='0 0 0 .02 .04 .06 .08 .1 .12 .14 .16 .18 .2 .22 .24 .26 .28 .3'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.15;
  z-index: 0;
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
}

#content {
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  z-index: 2;
  width: 100%;
}

main {
  padding: 4rem;
  min-height: calc(100vh - 60px);
}
main .icons {
  margin-top: 1rem;
}
main .icons a {
  padding: 0.4rem;
  transition: all 0.5s ease-out;
}
main .icons a:hover {
  color: #00f5d4;
}
main#home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding: 0;
}
main#home h1 {
  margin-bottom: 1rem;
  font-style: italic;
}
main#home h1 span {
  font-style: italic;
}

#main-footer {
  text-align: center;
  padding: 1rem;
  background: #2b2b2b;
  color: #fff;
  height: 60px;
}

a {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}
h1.lg-heading,
h2.lg-heading,
h3.lg-heading {
  text-align: start;
  font-size: clamp(3rem, 7vw, 6rem);
  font-style: italic;
}
h1.sm-heading,
h2.sm-heading,
h3.sm-heading {
  margin-bottom: 2rem;
  padding: 0.2rem 1rem;
  background: rgba(73, 73, 73, 0.5);
  font-weight: 600;
}

.about-title {
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.about-subtitle {
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-top: 0.75rem;
}

.about-kicker {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #444;
  font-weight: 600;
}
.section-title i {
  color: #00f5d4;
}

.text-primary {
  color: #444;
}

.text-secondary-afa {
  color: #00f5d4;
}

.text-accent {
  color: #00f5d4;
  text-shadow: 0 0 12px rgba(0, 245, 212, 0.25);
  display: inline-block;
  white-space: nowrap;
}

.btn, .btn-light, .btn-dark {
  display: block;
  padding: 0.5rem 1rem;
  border: 0;
  margin-bottom: 0.3rem;
}
.btn:hover, .btn-light:hover, .btn-dark:hover {
  background: #00f5d4;
  color: #000;
}

.btn-dark {
  background: black;
  color: #fff;
}

.btn-light {
  background: #c4c4c4;
  color: #333;
}

.btn-primary {
  background: radial-gradient(120% 120% at 0% 0%, rgba(0, 245, 212, 0.18), rgba(108, 92, 231, 0.12));
  color: #fff;
  border: 1px solid rgba(0, 245, 212, 0.35);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  will-change: transform;
  transition: transform 0.2s ease;
}
.btn-primary:hover {
  background: rgba(0, 245, 212, 0.25);
}

.about-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.blob {
  width: min(42vw, 520px);
  filter: blur(8px) saturate(115%) contrast(105%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f5d4, transparent);
  opacity: 0.6;
}

.about-info {
  display: grid;
  grid-gap: 30px;
  grid-template-areas: "bio bio bio" "job1 job2 job3";
  grid-template-columns: repeat(3, 1fr);
}
.about-info .bio-image {
  grid-area: bioimage;
  margin: auto;
  border-radius: 50%;
  border: #00f5d4 3px solid;
}
.about-info .bio {
  grid-area: bio;
}
.about-info .bio h3 {
  margin: 1rem 0;
}
.about-info .job-1 {
  grid-area: job1;
}
.about-info .job-2 {
  grid-area: job2;
}
.about-info .job-3 {
  grid-area: job3;
}
.about-info .job {
  background: #515151;
  padding: 0.5rem;
  border-bottom: #00f5d4 5px solid;
}

.tech-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0.5rem 0 0.75rem;
}
.tech-icons .tech {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.tech-icons .tech svg {
  width: 20px;
  height: 20px;
}
.tech-icons .tech em {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  opacity: 0.9;
}

.tech-rows {
  font-size: 1rem;
  line-height: 1.7;
}

.work-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.work-tabs .nav-link {
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}
.work-tabs .nav-link:hover {
  color: #00f5d4;
  border-bottom-color: rgba(0, 245, 212, 0.3);
}
.work-tabs .nav-link.active {
  color: #00f5d4;
  border-bottom-color: #00f5d4;
  background: transparent;
}

.project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.5);
}
.project-image-wrapper .project-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.project-image-wrapper .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.project-image-wrapper:hover .project-image {
  transform: scale(1.1);
}
.project-image-wrapper:hover .project-overlay {
  opacity: 1;
}

.project-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.project-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1rem 0;
  flex: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.project-tech .tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.project-tech .tech-icon:hover {
  opacity: 1;
  transform: scale(1.15);
}
.project-tech .tech-icon svg {
  width: 100%;
  height: 100%;
}

.projects {
  display: grid;
  grid-gap: 0.7rem;
  grid-template-columns: repeat(3, 1fr);
}
.projects .container {
  position: relative;
  width: 100%;
}
.projects .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #585757;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}
.projects .container:hover .overlay {
  height: 186px;
}
.projects .text {
  color: #00f5d4;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: start;
}
.projects img {
  display: block;
  height: 186px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border: 3px #fff solid;
}
.projects img:hover {
  border-color: white;
  transition: all 0.5s ease-out;
}

.boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 1rem;
}
.boxes div {
  font-size: 2rem;
  border: 3px #fff solid;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  transition: all 0.5s ease-out;
}
.boxes div:hover {
  padding: 0.5rem 1.5rem;
  background: #00f5d4;
  color: #000;
}
.boxes div:hover span {
  color: #000;
}

.contact-form-wrapper {
  padding: 2.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.form-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.form-control,
.form-select {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.form-control:focus,
.form-select:focus {
  background: rgba(20, 20, 20, 0.8);
  border-color: #00f5d4;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(0, 245, 212, 0.15);
  outline: none;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-control::placeholder,
.form-select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-control.is-valid,
.form-select.is-valid {
  border-color: rgba(0, 245, 212, 0.5);
  background: rgba(0, 245, 212, 0.05);
}
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: rgba(255, 77, 77, 0.6);
  background: rgba(255, 77, 77, 0.05);
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.input-group .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.input-group .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 77, 77, 0.9);
}

.valid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 245, 212, 0.9);
}

.form-field-wrapper {
  position: relative;
}

.btn-primary {
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 245, 212, 0.3);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-primary .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

.cf-turnstile {
  margin: 1rem 0;
}

.alert {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.alert.alert-success {
  background: rgba(0, 245, 212, 0.15);
  color: rgba(0, 245, 212, 0.95);
  border: 1px solid rgba(0, 245, 212, 0.3);
}
.alert.alert-danger {
  background: rgba(255, 77, 77, 0.15);
  color: rgba(255, 77, 77, 0.95);
  border: 1px solid rgba(255, 77, 77, 0.3);
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .input-group {
    flex-direction: column;
  }
  .input-group .form-select {
    border-radius: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
    max-width: 100%;
  }
  .input-group .form-control {
    border-radius: 8px;
    border-top-left-radius: 8px;
  }
}
.skills-section {
  max-width: 960px;
  margin: 0 auto;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skill-category h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #444;
}
.skill-category h3 i {
  color: #00f5d4;
}

.skill-list {
  list-style: disc inside;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.skill-list li {
  margin-bottom: 0.3rem;
}

.timeline {
  position: relative;
  padding: 2rem 0 3rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(238, 206, 26, 0.35);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  opacity: 0;
}
.timeline-item.left {
  left: 0;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  width: 12px;
  height: 12px;
  background: #00f5d4;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(238, 206, 26, 0.15);
}
.timeline-item.left::before {
  right: -6px;
}
.timeline-item.right::before {
  left: -6px;
}

.timeline-badge {
  display: inline-block;
  background: #00f5d4;
  color: #333;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.timeline-card {
  background: #515151;
  border-left: 4px solid #00f5d4;
  padding: 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}
.timeline-card p {
  font-size: 1em;
}

.timeline-item.left .timeline-card {
  margin-left: auto;
  border-left: none;
  border-right: 4px solid #00f5d4;
}

.glass {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.glass:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10;
  background: transparent;
}
.scroll-progress .bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00f5d4, #6c5ce7);
  box-shadow: 0 0 12px rgba(0, 245, 212, 0.4);
}

@media (max-width: 600px) {
  #canvas {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    left: 24px;
    transform: none;
  }
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 3rem;
  }
  .timeline-item.left .timeline-card {
    margin-left: 0;
    border-right: none;
    border-left: 4px solid #00f5d4;
  }
  .timeline-item::before {
    left: 18px;
    right: auto;
  }
}
@media screen and (min-width: 1171px) {
  .projects {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1170px) {
  .projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  main {
    align-items: center;
    text-align: center;
  }
  main .lg-heading {
    line-height: 1;
    margin-bottom: 1rem;
  }
  ul.menu-nav,
  div.menu-branding {
    float: none;
    width: 100%;
    min-height: 0;
  }
  ul.menu-nav.show,
  div.menu-branding.show {
    transform: translate3d(0, 0, 0);
  }
  .menu-nav {
    height: 75vh;
    transform: translate3d(-100%, 0, 0);
    font-size: 24px;
  }
  .menu-branding {
    height: 25vh;
    transform: translate3d(100%, 0, 0);
  }
  .menu-branding .portrait {
    background: url("https://imgur.com/D20svQ1.jpg");
    width: 150px;
    height: 150px;
  }
  .about-info {
    grid-template-areas: "bioimage" "bio" "job1" "job2" "job3";
    grid-template-columns: 1fr;
  }
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  main {
    padding: 2rem;
    width: 100vw;
  }
  main #home h1 {
    margin-top: 10vh;
  }
  main .lg-heading {
    margin-top: 1rem;
    font-size: 5rem;
  }
  .projects {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */