* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

header {
    background: #333;
    color: white;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

header nav ul li a:hover {
    color: #f1c40f;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

#about {
    padding: 50px 0;
}

#about h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
}

#about p {
    text-align: center;
    font-size: 18px;
}

#contact h2, #social h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
}

#contact form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

#contact form input, #contact form textarea {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contact form button {
    padding: 10px;
    border: none;
    background: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#contact form button:hover {
    background: #f1c40f;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon {
    text-decoration: none;
    color: white;
    background: #333;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.icon:hover {
    background: #f1c40f;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }


    
    }
    
    
    
    
    
    
}
#typing-effect {
  text-align: center;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  margin-top: 30px;
}

#dynamic-text {
  color: #007bff;
  font-weight: bold;
  border-right: 2px solid #000; /* Blinking cursor effect */
  animation: blink 0.5s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

