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

* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, 'PT Sans', 'Open Sans', 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.5;
  scrollbar-width: thin;
}

*::selection {
  background-color: #000;
  color: #fff;
}

*::-webkit-scrollbar {
  background-color: transparent;
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #999;
}

*::-webkit-scrollbar-corner {
  background-color: transparent;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0.75rem 0;
}

body {
  display: flex;
  justify-content: center;
}

main {
  width: 100%;
  max-width: 1200px;
}

main section {
  padding: 1.5rem 2.25rem;
}

main section img {
  height: 130px;
  width: 130px;
  border-radius: 130px;
  border: 1px solid #555;
}

main section h1 {
  font-size: 1.5rem;
  color: #444;
  font-weight: 600;
}

main section h2 {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

main section h2 span {
  font-weight: 400;
}

main section p {
  font-size: 1rem;
  line-height: 1.75;
  color: #666;
}

main section a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

main section a:hover {
  color: #666;
}

@media (min-width: 600px) {
  main {
    margin: 5% 0 0 0;
  }

  main section {
    padding: 2rem 3rem;
    max-inline-size: 555px;
  }
}

@media (max-height: 800px) {
  main {
    margin: 0;
  }
}
