/*
This CSS file is for the resume page of the website.
It includes styles for the PDF viewer and download button.
*/

/* Download Button Styling */
.download-button-container {
  text-align: center; /* Center the download button */
  margin-top: 1rem; /* Add space above the button */
}

.download-button {
  background-color: #7564ce; /* Dark background for the button */
  color: #fff; /* White text color */
  padding: 0.5rem 1rem; /* Padding inside the button */
  text-decoration: none; /* Remove underline from the link */
  font-family: 'Orbitron', sans-serif; /* Set the font for the button */
  border-radius: 5px; /* Rounded corners for the button */
  display: inline-block; /* Make the button behave like a block element */
  transition: background-color 0.3s ease; /* Smooth transition for background color change */
  margin-bottom: 1rem; /* Add space below the button */
}

.download-button:hover {
  background-color: #9d90f0; /* Lighter background when hovered */
}

/* PDF Viewer Styling */
.pdf-viewer {
  width: 100%; /* Make the PDF viewer take up the full width of its container */
  height: 90vh; /* Set the height to 90% of the viewport height */
  border: none; /* Remove the border around the PDF viewer */
}
