:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.84);
  --heading-accent: #58f795;
  --panel: #0f0f0f;
  --panel-border: rgba(255, 255, 255, 0.12);
  --linkedin: rgba(0, 64, 255, 0.932);
  --github: rgba(183, 191, 223, 0.932);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.body {
  display: flex;
  flex-direction: column;
}

.resume-page {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 16px;
}

.resume-card {
  padding-top: 10px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--heading-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.decription-1,
.decription-4 {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.55;
}

.decription-4 {
  margin: 0 0 18px;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
}

.decription-1 {
  margin: 0;
  font-size: 0.95rem;
}

.resume-summary {
  max-width: 58ch;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  line-height: 1.55;
}

.connect-w-me {
  margin: 0 0 18px;
  color: var(--heading-accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.button-links-connect-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.connect-with-me-btn-linkdin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: none;
  border-radius: 20px;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
  background-color: var(--linkedin);
}

.connect-with-me-btn-github {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: none;
  border-radius: 20px;
  color: #111111;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
  background-color: var(--github);
  color: #111111;
}

.connect-with-me-btn-linkdin:hover,
.connect-with-me-btn-github:hover {
  transform: scale(1.04);
}

.connect-with-me-btn-insta-text {
  font-family: "Space Grotesk", sans-serif;
}

.viewer-shell {
  min-height: 72vh;
  height: 980px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
}

object {
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.fallback {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  text-align: center;
}

.fallback-button {
  margin-top: 10px;
}

.footer-cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 40px;
}

@media (max-width: 980px) {
  .resume-page {
    width: min(100% - 28px, 1400px);
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .button-links-connect-container {
    flex-direction: column;
  }

  .connect-with-me-btn-linkdin,
  .connect-with-me-btn-github,
  .connect-with-me-btn-mail {
    width: 100%;
  }

  .viewer-shell {
    min-height: 68vh;
    height: 72vh;
    border-radius: 20px;
  }
}
