body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

.hero {
  background-color: #00b3b3;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  width: 100%;
}

.profile-pic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 100px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero h1 {
  margin: 0;
  font-size: 2.8rem;
}

.tagline {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

h2 {
  font-size: 1.8rem;
  color: #00b3b3;
  border-bottom: 2px solid #00b3b3;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-card {
  background-color: #111;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 179, 179, 0.1);
  margin-bottom: 2rem;
}

.project-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.project-card a {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #00b3b3;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.project-card a:hover {
  background-color: #007373;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  background-color: #00b3b3;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #007373;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button[type="submit"] {
  background-color: #00b3b3;
  color: #fff;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #007373;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}


.button-group {
  text-align: center;
  margin-top: 1rem;
}
