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

:root {
  --text-color: rgb(255 255 255 / 0.8);
  --accent-color: #f1a85a;
  --bg-color: #0f1d45;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  max-width: 46rem;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .container {
    padding: 1rem 2rem 3rem;
    font-size: 1.25rem;
  }
}

.profile-picture {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

h1 {
  font-family: "Fraunces", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(
    170deg in oklab,
    color-mix(in oklab, var(--accent-color), #fff 40%),
    var(--accent-color) 60%
  );
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 0.3);
  text-underline-offset: 0.15em;
  text-decoration-thickness: 0.1em;
  transition: all 0.1s ease-in-out;
  transition-property: color, text-decoration-color;
}

@media (hover: hover) {
  a:hover {
    color: #fff;
    text-decoration-color: var(--accent-color);
  }
}

.links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.links li:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
  color: rgb(255 255 255 / 0.7);
}
