body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
  background-color: #0f172a;
  color: #e5e7eb;
  a {
  color: white;

}

}

header {
  margin-bottom: 40px;
}

h1 {
  margin-bottom: 5px;
}

h2 {
  margin-top: 40px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

.project {
  margin-top: 15px;
  padding: 10px;
  background: #1e293b;
  border-radius: 5px;
}
.cv-button {
  display: inline-block;
  padding: 12px 22px;
  background-color: #ffffff;
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s ease;
}

.cv-button:hover {
  transform: translateY(-2px);
}

body {
  background-image: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("Background_NYC.JPG");

  
  min-height: 100vh;

    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
html {
  scroll-behavior: smooth;
}

section {
  padding: 40px 20px;
}

.button-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cv-button {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.cv-button:hover {
  background: rgba(255,255,255,0.2);
}