* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
 body {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
}
/* CENTER CONTAINER */
.container {
  transform: scale(1.07);
  transform-origin: top center;
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* HEADER */
header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 36px;
}

header p {
  margin-top: 10px;
  font-size: 16px;
}

/* NAV */
nav {
  text-align: center;
  margin-bottom: 40px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  color: #0e0f11;
}

nav a:hover {
  text-decoration: underline;
}

/* SECTIONS */
section {
  background: rgba(11, 10, 10, 0.15);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}
/* SKILLS */
#skills ul {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#skills li {
  background: #72aaf4;
  padding: 8px 14px;
  border-radius: 5px;
}
/* BUTTON */
button {
  margin-top: 10px;
  padding: 8px 16px;
  background: #2563eb;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #1d4ed8;
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
}

