body, html {
  height: 100%;
  margin: 0;
  font-family: Roboto, sans-serif;

}

body {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  background-color: rgb(66, 66, 66);
  padding: 48px 18px;
}

.resume-wrapper {
  position: fixed;
  align-items: flex-start;
  gap: 24px;
  max-width: 900px;
  justify-content: center;
}

.resume-box {
  background-color: rgba(28, 31, 36, 0.72);
  border-radius: 22px;
  box-shadow: 0 8px 40px #00aaff;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.resume-box img {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.download-container {
  position: fixed;
  top: 10%;
  right: 15%;
}

.download-btn {
  align-self: center;
  padding: 14px 28px;
  background-color: #20b7ff;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(32,183,255,0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.download-btn:hover,
.download-btn:focus-visible {
  background-color: #007bbd;
  box-shadow: 0 8px 20px rgba(0,123,189,0.6);
  outline: none;
  cursor: pointer;
}
