  body {
      background: #101014;
      color: #e0e0e0;
      font-family: 'Segoe UI', 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.7;
      font-size: 16px;
      min-height: 100vh;
    }
.container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Optional: centers content horizontally */
}

h1, .email, .resume-image {
  margin-bottom: 16px; /* Adds spacing between elements */
}

.resume-image {
  max-width: 100%;
  height: auto;
}

.go-to-top {
  display: flex;
  justify-content: center;
  margin: 32px 0 16px 0;
}

.go-to-top button {
  background-color: #2d6cdf;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.go-to-top button:hover {
  background-color: #174a99;
}

.image-protect {
  position: relative;
  display: inline-block;
}
.image-protect .resume-image {
  display: block;
}
.image-protect .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 2;
}
    /* .container {
      max-width: 600px;
      margin: 60px auto 0 auto;
      background: #18181c;
      padding: 40px 32px 32px 32px;
      border-radius: 10px;
      box-shadow: 0 2px 24px 0 #000a;
    } */

    /* .container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
        overflow-x: auto;
    }

    .resume-image {
        display: block;
        max-width: none;
        width: auto;
        height: auto;
    } */

    /* h1 {
      color: #fff;
      font-size: 2.2em;
      font-weight: 700;
      margin-top: 0;
      margin-bottom: 0.2em;
      letter-spacing: 1px;
      text-align: center;
    } */

    /* .buttons {
      display: flex;
      gap: 1.2em;
      justify-content: center;
      margin: 2em 0 1.5em 0;
    }

    .buttons a {
      text-decoration: none;
    }

    button {
      padding: 0.7em 2em;
      font-size: 1em;
      background: #18181c;
      color: #ffd700;
      border: 1px solid #333;
      border-radius: 5px;
      font-weight: bold;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border 0.2s;
      box-shadow: 0 1px 4px #0006;
    }

    button:hover {
      background: #23232a;
      color: #fff;
      border: 1px solid #ffd700;
    } */

    /* .email {
      font-size: 1em;
      color: #aaa;
      text-align: center;
      margin-bottom: 0.5em;
    }

    .email a {
      color: #6ec1e4;
      text-decoration: none;
      transition: color 0.2s;
    }

    .email a:hover {
      color: #ffd700;
      text-decoration: underline;
    } */

    @media (max-width: 700px) {
      .container {
        padding: 18px 6px;
        margin: 0;
        border-radius: 0;
      }
      h1 {
        font-size: 1.4em;
      }
      .buttons {
        flex-direction: column;
        gap: 0.8em;
      }
    }