/* 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;
}

main {
  padding: 40px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.skill-item {
  background-color: #2C2C2C;
  padding: 20px;
  border-radius: 7px;
  text-align: center;
}

.skill-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.skill-item p {
  font-size: 1rem;
  color: #B0B0B0;
  margin-bottom: 15px;
}

.progress {
  background-color: #3A3A3A;
  border-radius: 5px;
  height: 20px;
  width: 100%;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #007BFF;
  text-align: center;
  line-height: 20px;
  color: white;
  font-weight: bold;
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
