/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #1E1E1E;
  color: #E0E0E0;
  font-size: 16px;
}

.cv-container {
  text-align: center;
  padding: 40px;
  background-color: #2C2C2C;
  border-radius: 8px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.cv-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.cv-viewer {
  width: 55%;
  height: 70vh;
  border: none;
  display: block;
  margin: 0 auto;
  background-color: #3A3A3A;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-download {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #007BFF;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.btn-download:hover {
  background-color: #0056b3;
  text-decoration: none;
}
