:root {
  --theme-color: #3fc2a6;
  --text-color: #222;
}

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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-feature-settings: "liga" 1, "calt" 1, "ss01" 1, "ss04" 1;
  background: linear-gradient(
    76deg,
    hsla(163, 46%, 49%, 1) 0%,
    hsla(172, 65%, 52%, 1) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.profile-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 32rem;
  width: 100%;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  text-align: left;
}

.profile-pic {
  width: 7rem;
  border-radius: 1rem;
  object-fit: cover;
  margin: 0 auto 1.5rem auto;
  display: block;
  border: none;
}

h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 2rem 0 1rem 0;
}

ul {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

li {
  margin: 0.8rem 0;
  color: var(--text-color);
}

/* Default bullet point for items without emoji */
li .list-icon {
  margin-right: 0.2rem;
  margin-left: 0.5rem;
  color: var(--theme-color);
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 0.0625rem dotted #d1d5db;
  color: var(--text-color);
}

a:hover {
  color: var(--theme-color);
  border-bottom-color: var(--theme-color);
}

p {
  text-align: center;
  font-weight: normal;
  text-decoration: none;
  font-size: 0.9rem;
}

h5 {
  font-weight: normal;
  text-decoration: none;
}

@media (min-width: 35rem) {
  /* body {
        background: red;
    } */
  body {
    padding: 1.5rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.7rem;
  }
  ul {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1.2rem;
  }
  p {
    font-size: 1rem;
  }
  .profile-pic {
    width: 9rem;
  }
}
