


.rectangle h2 {
  font-size: 3em;
  font-weight: bold;
  text-shadow: 6px 6px 6px rgba(0, 0, 0, 0.8);
}

.resume-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Blue color */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.resume-button:hover {
  background-color: #0056b3; /* Darker blue color on hover */
}

