/* .work-sans-<uniquifier> {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

:root {
  --paragraph-margin: 10px;
}

::selection {
  background: hsl(220, 65%, 54%);
  color: #fff;
}

::-moz-selection {
  background: hsl(220, 65%, 54%);
  color: #fff;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

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

footer {
  text-align: center;
  margin-block: 3rem 1rem;
}

img {
  max-inline-size: 100%;
  block-size: auto;
  display: block;
}

body {
  background-color: #fafafa;
  color: #555;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  min-height: 100vh;
}

h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

small {
  font-size: 0.875rem;
}

.profile {
  margin-block: 2rem 1.5rem;
  margin-inline: 10px;
}

.profile__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile__name {
  margin-block: 20px 5px;
}

.profile__component {
  margin-block-end: 5px;
}

.profile__component a {
  text-decoration: none;
}

.profile__component a:hover {
  text-decoration: underline;
}

.projects {
  text-align: center;
  margin-inline: 10px;
}

.projects__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

p {
  margin-block: var(--paragraph-margin);
}

a {
  color: #222;
}

a:hover {
  color: #ec5840;
}