:root {
  --page-bg: #2c2c2c;
  --frame-bg: #1d1a27;
  --frame-bg-soft: #252137;
  --frame-edge: #07070a;
  --nav-bg: rgba(44, 43, 52, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f1fb;
  --muted: rgba(243, 241, 251, 0.56);
  --accent: #f0f4bb;
  --accent-soft: rgba(240, 244, 187, 0.18);
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--page-bg);
  color: var(--text);
  font-family: "Orbitron", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.replica-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 18px 14px;
}

.replica-orb {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(2px);
  opacity: 0.35;
  pointer-events: none;
}

.replica-orb-a {
  left: -8rem;
  top: 16rem;
  width: 20rem;
  height: 9rem;
  transform: rotate(20deg);
}

.replica-orb-b {
  right: 10rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  transform: rotate(12deg);
}

.replica-orb-c {
  right: -8rem;
  bottom: 2rem;
  width: 20rem;
  height: 18rem;
  transform: rotate(22deg);
}

.gallery-frame {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.skills-view {
  width: min(100%, 860px);
}

.skills-ui .content {
  align-items: flex-start;
}

.skills-header {
  margin-bottom: 24px;
  text-align: center;
}

.skills-title {
  margin: 0;
  font-size: 50px;
}

.skills-copy {
  max-width: 64ch;
  margin: 14px auto 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(243, 241, 251, 0.74);
}

.skills-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.skills-card {
  min-height: 232px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.skills-card-index {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.skills-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
}

.skills-meter-list {
  display: grid;
  gap: 12px;
}

.skill-meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.skill-meter-head strong {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

.skill-meter-track {
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.skill-meter-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(240, 244, 187, 0.82), rgba(255, 255, 255, 0.92));
}

.device-layout {
  display: flex;
  align-items: center;
  justify-content: center;
}

.device {
  background: var(--frame-edge);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.desktop-device {
  flex: 1 1 auto;
  max-width: 1180px;
  border-radius: 4px;
  padding: 10px;
}

.mobile-device {
  display: none;
  flex: 0 0 280px;
  width: 280px;
  border-radius: 22px;
  padding: 8px;
}

.screen {
  position: relative;
  overflow: hidden;
  min-height: 544px;
  background:
    radial-gradient(circle at 48% 45%, rgba(255, 255, 255, 0.08), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 34%),
    var(--frame-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.desktop-device .screen {
  aspect-ratio: 1470 / 770;
}

.mobile-device .screen {
  aspect-ratio: 430 / 932;
  min-height: auto;
}

.screen::before,
.screen::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.screen::before {
  left: -14%;
  bottom: -14%;
  width: 34%;
  height: 34%;
  transform: rotate(26deg);
}

.screen::after {
  right: 16%;
  top: -10%;
  width: 20%;
  height: 60%;
  transform: rotate(-26deg);
}

.ui {
  position: absolute;
  inset: 0;
  padding: 12px 6px 10px;
}

.screen-mobile .ui {
  padding: 10px 12px 12px;
}

.meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.screen-mobile .meta-row {
  font-size: 8px;
}

.meta-row strong {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.meta-row span {
  display: block;
}

.meta-profile {
  text-align: center;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  min-width: 34px;
  min-height: 24px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.content {
  position: absolute;
  inset: 72px 48px 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-mobile .content {
  inset: 76px 12px 48px;
}

.side-icons {
  position: absolute;
  left: 14px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.side-icons span {
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.side-icons span:nth-child(2) {
  background: rgba(239, 104, 120, 0.8);
}

.screen-mobile .side-icons {
  display: none;
}

.footer-left,
.footer-right {
  position: absolute;
  bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-left {
  left: 24px;
}

.footer-right {
  right: 24px;
  text-align: right;
}

.screen-mobile .footer-left,
.screen-mobile .footer-right {
  bottom: 4px;
  font-size: 8px;
}

.bottom-nav {
  position: absolute;
  left: 50%;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--nav-bg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.screen-mobile .bottom-nav {
  gap: 8px;
  padding: 6px 7px;
  bottom: 4px;
}

.bottom-nav a {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-mobile .bottom-nav a {
  font-size: 6px;
}

.bottom-nav a.active {
  color: var(--text);
}

.home-copy {
  text-align: center;
}

.home-eyebrow {
  margin: 0 0 16px;
  font-size: 24px;
  letter-spacing: 0.06em;
}

.home-title {
  margin: 0;
  font-size: 62px;
  line-height: 1.06;
  font-weight: 700;
}

.home-subtitle {
  margin: 18px 0 0;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.screen-mobile .home-eyebrow {
  font-size: 18px;
  margin-bottom: 12px;
}

.screen-mobile .home-title {
  font-size: 28px;
}

.screen-mobile .home-subtitle {
  font-size: 10px;
  margin-top: 12px;
}

.about-copy {
  max-width: 760px;
  text-align: center;
}

.about-title {
  margin: 0 0 18px;
  font-size: 54px;
}

.about-body {
  margin: 0 auto;
  max-width: 700px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(243, 241, 251, 0.75);
}

.screen-mobile .about-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.screen-mobile .about-body {
  font-size: 13px;
  line-height: 1.7;
}

.projects-view {
  width: min(100%, 760px);
}

.projects-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 44px;
}

.projects-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
  padding-bottom: 8px;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  flex: 0 0 auto;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
}

.project-card {
  display: block;
  scroll-snap-align: center;
}

.project-visual {
  aspect-ratio: 1 / 1.18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.14), transparent 11rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), transparent 38%),
    var(--frame-bg-soft);
}

.project-visual-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.project-visual-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-visual-title {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.25;
  color: var(--text);
}

.project-brand {
  display: block;
  max-width: 84px;
  max-height: 30px;
  object-fit: contain;
  object-position: right top;
}

.project-brand-text {
  max-width: 84px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  text-align: right;
}

.project-shot-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 20, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.project-shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-stack span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 241, 251, 0.86);
}

.project-theme-wekall {
  background:
    radial-gradient(circle at 18% 16%, rgba(77, 234, 178, 0.2), transparent 10rem),
    linear-gradient(155deg, rgba(108, 78, 219, 0.94), rgba(41, 29, 85, 0.98));
}

.project-theme-wekall-admin {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 173, 64, 0.24), transparent 9rem),
    linear-gradient(160deg, rgba(74, 43, 177, 0.96), rgba(252, 161, 28, 0.28));
}

.project-theme-microimpulso {
  background:
    radial-gradient(circle at 15% 15%, rgba(119, 111, 255, 0.26), transparent 9rem),
    linear-gradient(160deg, rgba(18, 22, 44, 0.98), rgba(109, 102, 255, 0.62));
}

.project-theme-microimpulso-app {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.12), transparent 9rem),
    linear-gradient(160deg, rgba(20, 24, 42, 0.98), rgba(93, 81, 255, 0.7));
}

.project-theme-devil-tv {
  background:
    radial-gradient(circle at 15% 15%, rgba(199, 53, 88, 0.18), transparent 9rem),
    linear-gradient(160deg, rgba(9, 10, 16, 0.98), rgba(35, 22, 35, 0.98));
}

.project-theme-campus {
  background:
    radial-gradient(circle at 82% 14%, rgba(109, 182, 255, 0.22), transparent 10rem),
    linear-gradient(160deg, rgba(82, 137, 226, 0.95), rgba(93, 45, 173, 0.92));
}

.project-thumb-fallback,
.single-thumb-fallback {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.07), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%),
    var(--frame-bg-soft);
  color: var(--text);
  text-align: center;
}

.project-thumb-fallback span,
.single-thumb-fallback span {
  font-size: 18px;
  line-height: 1.3;
}

.project-name {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-mobile .projects-view {
  width: 100%;
}

.screen-mobile .projects-title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.screen-mobile .projects-carousel {
  gap: 10px;
}

.screen-mobile .project-track {
  grid-auto-columns: 100%;
  gap: 12px;
}

.screen-mobile .carousel-arrow {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.screen-mobile .project-name {
  font-size: 8px;
}

.screen-mobile .project-visual {
  padding: 10px;
  gap: 9px;
}

.screen-mobile .project-visual-kicker {
  font-size: 7px;
}

.screen-mobile .project-visual-title {
  font-size: 11px;
}

.screen-mobile .project-brand {
  max-width: 62px;
  max-height: 22px;
}

.screen-mobile .project-stack {
  gap: 4px;
}

.screen-mobile .project-stack span {
  font-size: 6px;
  padding: 4px 6px;
}

.screen-mobile .skills-title {
  font-size: 21px;
}

.screen-mobile .skills-copy {
  max-width: 24ch;
  font-size: 11px;
  line-height: 1.55;
}

.screen-mobile .skills-view {
  width: 100%;
  padding-top: 18px;
}

.screen-mobile .skills-ui .content {
  inset: 98px 12px 48px;
}

.screen-mobile .skills-header {
  margin-bottom: 14px;
}

.screen-mobile .skills-groups {
  grid-template-columns: 1fr;
  gap: 10px;
}

.screen-mobile .skills-card {
  min-height: auto;
  padding: 12px;
}

.screen-mobile .skills-card h3 {
  font-size: 14px;
}

.screen-mobile .skill-meter-head,
.screen-mobile .skill-meter-head strong {
  font-size: 7px;
}

.screen-mobile .skill-meter-track {
  height: 6px;
}

.single-project {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 780px;
}

.single-thumb {
  aspect-ratio: 1 / 1.12;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  background: var(--frame-bg-soft);
}

.project-visual-detail {
  height: 100%;
  padding: 18px;
}

.project-visual-detail .project-visual-title {
  font-size: 18px;
}

.project-visual-detail .project-brand {
  max-width: 108px;
  max-height: 38px;
}

.single-copy h1 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.25;
}

.single-copy p {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243, 241, 251, 0.76);
}

.single-summary {
  color: rgba(243, 241, 251, 0.92);
}

.single-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-tech-block {
  margin-top: 16px;
}

.single-tech-block strong {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.screen-mobile .single-project {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.screen-mobile .single-copy h1 {
  font-size: 16px;
  margin-bottom: 10px;
}

.screen-mobile .single-copy p {
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.screen-mobile .single-tags span {
  font-size: 7px;
  padding: 6px 8px;
}

.screen-mobile .project-visual-detail {
  padding: 12px;
}

.screen-mobile .project-visual-detail .project-visual-title {
  font-size: 13px;
}

.screen-mobile .single-tech-block strong {
  font-size: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  width: min(100%, 900px);
}

.contact-title {
  margin: 0 0 20px;
  font-size: 52px;
  line-height: 1.06;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-person img,
.contact-person .avatar-fallback {
  width: 54px;
  height: 54px;
  border-radius: 999px;
}

.avatar-fallback {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: #17151f;
  font-size: 18px;
  font-weight: 700;
}

.contact-person strong,
.contact-person span {
  display: block;
}

.contact-person span {
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.contact-copy {
  max-width: 48ch;
  margin: 18px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243, 241, 251, 0.74);
}

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

.contact-cta,
.contact-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-cta {
  background: rgba(240, 244, 187, 0.14);
  border-color: rgba(240, 244, 187, 0.3);
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
}

.contact-panel-head {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-panel-body {
  display: grid;
  gap: 14px;
}

.contact-panel-body p {
  margin: 0;
}

.contact-panel-body strong,
.contact-panel-body span {
  display: block;
}

.contact-panel-body strong {
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-panel-body span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(243, 241, 251, 0.72);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #15131c;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 124px;
  resize: none;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 20px;
  border: 0;
  background: var(--accent);
  color: #14111d;
  cursor: pointer;
}

.screen-mobile .contact-layout {
  grid-template-columns: 1fr;
  gap: 16px;
}

.screen-mobile .contact-title {
  font-size: 26px;
  margin-bottom: 14px;
}

.screen-mobile .contact-person img,
.screen-mobile .contact-person .avatar-fallback {
  width: 42px;
  height: 42px;
}

.screen-mobile .contact-person span {
  font-size: 11px;
}

.screen-mobile .contact-copy,
.screen-mobile .contact-panel-body span {
  font-size: 11px;
}

.screen-mobile .contact-actions {
  gap: 8px;
  margin-top: 14px;
}

.screen-mobile .contact-cta,
.screen-mobile .contact-secondary {
  min-height: 34px;
  padding: 0 10px;
  font-size: 8px;
}

.screen-mobile .contact-panel {
  padding: 14px;
}

.screen-mobile .contact-panel-head {
  font-size: 8px;
  margin-bottom: 10px;
}

.screen-mobile .contact-panel-body strong {
  font-size: 10px;
}

.not-found {
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found-art {
  position: relative;
  margin-bottom: 10px;
  font-size: 124px;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(240, 244, 187, 0.12);
}

.not-found-art::before,
.not-found-art::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}

.not-found-art::before {
  left: 24%;
  top: 54%;
  width: 70px;
  height: 6px;
  transform: rotate(-46deg);
}

.not-found-art::after {
  right: 18%;
  top: 18%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.not-found-note {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.screen-mobile .not-found-art {
  font-size: 78px;
}

.screen-mobile .not-found-art::before {
  width: 44px;
  height: 4px;
}

.screen-mobile .not-found-art::after {
  width: 10px;
  height: 10px;
}

.screen-mobile .not-found-note {
  font-size: 9px;
}

@media (max-width: 720px) {
  .replica-shell {
    padding: 8px 6px 14px;
  }

  .desktop-device {
    display: none;
  }

  .mobile-device {
    display: block;
    width: 100%;
    max-width: 390px;
    padding: 6px;
  }

  .ui {
    padding-left: 12px;
    padding-right: 12px;
  }

  .meta-row {
    gap: 10px;
  }

  .lang-btn {
    min-width: 28px;
    min-height: 20px;
    font-size: 8px;
  }

  .content {
    inset-left: 14px;
    inset-right: 14px;
  }

  .home-title {
    font-size: 42px;
  }

  .projects-title,
  .contact-title,
  .about-title {
    font-size: 34px;
  }

  .single-project,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .skills-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .skills-groups {
    grid-template-columns: 1fr;
  }
}
