body {
  font-family: 'Open Sans', sans-serif;
  background-color: #32363e;
  margin: 0;
  padding: 0;
  color: #f0f0f0;
}

header {
  padding: 2rem 1rem;
  background-color: #282c34;
  color: white;
}

h1, h4 {
  margin: 0.5rem 0;
}

section {
  padding: 2rem 1rem;
}

.link {
  font-weight: 600;
}

.skills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 1.5rem;
}

.tech-icon {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer {
  padding: 2rem 1rem;
  background-color: #282c34;
  color: white;
  text-align: center;
}

footer a {
  color: white;
  margin: 0 10px;
  transition: transform 0.3s;
}

footer a:hover {
  transform: scale(1.2);
  color: #00d4ff;
}
 .container{
    
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.typing {
  font-family: 'Courier New', monospace;
  color: #00ffcc;
  font-size: 2.5rem;
  border-right: 3px solid #00ffcc;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  margin: 2rem auto;
  animation: typing 3s steps(12) 1s forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 12ch; }
}

@keyframes blink {
  50% { border-color: transparent; }
}
.typing {
  font-family: 'Courier New', monospace;
  color: #00ffcc;
  font-size: 2.5rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #00ffcc;
  width: fit-content;
  margin: 2rem auto;
}





