body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f3f6f3;
}

.header {
  height: 30vh;
  width: 100%;
  padding: 3rem 0 0 0;

  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;

  background-image: linear-gradient(to bottom, #fada4b 50%, transparent 50%);
}

.img-profile {
  height: 20vh;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.title {
  font-size: 2rem;
  text-align: center;
}

.divider {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}

.separator {
  width: 5rem;
  height: 2px;
  background-color: #fada4b;
}

.list {
  width: 100%;

  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;

  list-style: none;
  padding: 0;
}

.item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  margin-left: 1.5rem;
  margin-right: 1rem;
}
.icon svg {
  width: 20px;
  height: 20px;
}

.link {
  text-decoration: none;

  width: 14rem;
  padding: 0.5rem 3rem;

  display: flex;
  align-items: center;
  gap: 1rem;

  color: #002d5b;
  font-size: 1.5rem;
  background-color: #fada4b;
  border-radius: 1rem;
}

.link:hover {
  background-color: #87762a;
  color: #f3f6f3;
}

.link:hover .icon svg path {
  fill: #f3f6f3;
}
