* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0d0d0d;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #111;
  border-bottom: 2px solid red;
}

.logo {
  color: red;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: red;
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(black, #1a1a1a);
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: red;
}

.hero p {
  margin: 10px 0;
  color: #ccc;
}

.hero button {
  padding: 10px 20px;
  border: none;
  background: red;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: darkred;
}

/* SECTIONS */
section {
  padding: 60px 40px;
}

h2 {
  color: red;
  margin-bottom: 20px;
}

/* SKILLS */
.skills-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.skill {
  background: #1a1a1a;
  padding: 10px 20px;
  border-left: 4px solid red;
}

/* PROJECTS */
.project-card {
  background: #1a1a1a;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid red;
  transition: 0.3s;
}

.project-card:hover {
  transform: scale(1.05);
}

/* CONTACT */
a {
  color: red;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
}

img{
  width: 20rem;
  right: 20rem;
}