
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f5;
  color: #1f2937;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.hero-gif {
  width: 150px;
  height: auto;
  position: absolute;
  top: 2rem;
  right: 2rem;
  margin: 0;
}


.hero h1 {
  color: #050608;
  font-size: 3rem;
}
 
.hero h1 span {
  color: #3f3f46;
}
 
.choice-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-project {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid #3f3f46;
  border-radius: 18px;
  color: #3f3f46;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.5s ease-out
}

.btn-project:hover {
  background: #3f3f46;
  color: #f4f4f5;
}

.project-image {
  width: 200px;
  height: auto;
  border: 2px solid #3f3f46;
  border-radius: 12px;
  margin-top: 1rem;
  transition: transform 0.5s ease;
}

.project-image:hover {
  border-color: #161618;
  transition: ease-out 0.5s;
  transform: rotate(5deg) scale(1.5);
  cursor: loading;
}

.project-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24rem;
}
 
.choice-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 2px solid #3f3f46;
  border-radius: 18px;
  color: #3f3f46;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.5s ease-out
}
 
.choice-btn:hover {
  background: #3f3f46;
  color: #f4f4f5;
}
 
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
 
.section h2 {
  margin-bottom: 1.5rem;
  color: #3f3f46;
}
 
 
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
 
.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e2e2e5;
  transition: transform 0.2s ease;
}
 
.card:hover {
  border-color: #3f3f46;
  transition: ease-out 0.5s;
}
 
.card h3 {
  margin-bottom: 1rem;
  color: #3f3f46;
}
 

.skill {
  margin-bottom: 2rem;
}
 
.skill-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.1rem;
  font-size: 1rem;
  color: #1f2937;
}
 
.skill-label span:last-child {
  color: #6b7280;
  font-size: 1rem;
}
 
.skill-bar {
  background: #e2e2e5;
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
  border: 2px solid #d9d9dd;
}
 
.skill-fill {
  height: 100%;
  background: #3f3f46;
  border-radius: 10px;
}
