body {
  margin: 0%;
  background-color: #f1efec;
  /*background: linear-gradient(300deg, #a6e3f7, #96bff7, #c290eb);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;*/

  font-family: "Sono", sans-serif;
}

/* Hint: What can you do with a media query and flexbox? */
/*@media (max-width: 1250px) {
  .pricing-container {
    flex-direction: column;
    height: 100%;
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}*/

#me {
  text-decoration: none;
  color: black;
  font-size: xx-large;
  font-family: Arial, Helvetica, sans-serif;
}
#navebar {
  background-color: #d4c9be;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
}
.bi-fingerprint {
  padding-right: 7px;
}

.list1 {
  display: flex;
  gap: 25px;
  list-style: none;
  margin-top: 6px;
  padding-right: 10px;
  font-weight: bold;
}
.list1 > * {
  color: black;
  font-size: 20px;
}

a:link {
  text-decoration: none;
}
a:hover {
  color: #f1efec;
}
.menu {
  display: none;
}
@media (max-width: 700px) {
  .list1 {
    display: none;
  }
  .menu {
    display: flex;
  }
}

.hero {
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

#experience > h1 {
  text-align: center;
}
.e-items {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 50px 20px;
}
.education,
.work-experience,
.skills {
  background-color: #d4c9be;
  flex: 1;
  padding: 10px 30px;
  border-radius: 10px;
}
