/* 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;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration: none;
}

section {
  padding: 40px;
  margin-bottom: 40px;
}

.hero {
  background-color: #2C2C2C;
  padding: 80px 0;
  text-align: center;
  color: #E0E0E0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #007BFF;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  font-weight: bold;
}

.hero .btn:hover {
  background-color: #0056b3;
}

.intro, .projects, .contact {
  background-color: #2C2C2C;
  color: #E0E0E0;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background-color: #3A3A3A;
  padding: 20px;
  border-radius: 7px;
  text-align: center;
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.project-card .btn {
  background-color: #007BFF;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  font-weight: bold;
}

.project-card .btn:hover {
  background-color: #0056b3;
}

.contact {
  text-align: center;
  background-color: #2C2C2C;
}

.contact .btn {
  background-color: #007BFF;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  font-weight: bold;
}

.contact .btn:hover {
  background-color: #0056b3;
}
