body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: rgb(21, 21, 43);
}

header {
  background: #1e1e2f;
  color: white;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

a:hover{
    color: grey;
}

.hero {
  padding: 2rem;
  text-align: center;
  background-color: #e0e0e0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero {
  animation: fadeIn 1s ease-in;
}

.profile-img {
    width: 230px;
    height: 300px;
    margin-bottom: 0.56%;
    border-radius: 35%
}

section {
    padding: 2rem;
}

#about ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5%;

}

.project-card {
  background: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.project-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1e1e2f;
  color: white;
}

#contact ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

hr {
  width: 94%;
  border: 2px solid burlywood;
}


