*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

header {
  width: 100%;
  height: fit-content;
  padding-block: 2rem;
  display: flex;
  justify-content: center;
  background-color: #262626;
}

strong {
  color: #fafafa;
  font-size: 1.8rem;
  font-weight: 600;
}

nav {
  width: 100%;
  height: fit-content;
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: #525252;
}

a {
  color: #fafafa;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

main {
  width: 100%;
  height: fit-content;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

h1 {
  color: #262626;
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  color: #525252;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}