@font-face {
  src: url("/assets/Barlow.woff2") format("woff2-variations");
  font-family: Barlow;
  font-weight: 1 999;
  font-display: fallback;
}

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

html {
  -webkit-tap-highlight-color: transparent;
  font-family: Barlow, -apple-system, HelveticaNeue, Helvetica, Arial,
    sans-serif;
  font-variation-settings: "wght" 70, "wdth" 500;
  background: #fafafa;
  color: #262626;
  font-size: 1.3rem;
  text-transform: lowercase;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  body {
    padding: 4rem;
  }
}

:link,
:visited {
  color: #3636e8;
}

:focus {
  outline: 2px dotted;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
}

.skip-link:not(:focus):not(:active) {
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.no-js .js-visible {
  display: none !important;
}

.title {
  display: block;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 2.25rem;
  font-variation-settings: "wght" 160, "wdth" 500;
}

.title,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

img,
video {
  display: block;
  max-width: 100%;
  margin: auto;
}

video {
  border: none;
}

nav {
  --border-width: 0.1rem;
  border-top: var(--border-width) solid #ddd;
}

.nav-container {
  display: flex;
  gap: 0.8rem;
}

nav a {
  position: relative;
  top: calc(-1 * var(--border-width));
  border-top: var(--border-width) solid;
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.8rem 0.5rem;
  text-decoration: none;
}

nav a:not([aria-current="page"]) {
  border-top-color: transparent;
}

[aria-current="page"]:not(:hover):not(:focus):not(:active) {
  color: currentColor;
}

.aspect-ratio {
  height: 0;
  overflow: hidden;
  padding-top: calc(1 / 1 * 100%);
  background: white;
  position: relative;
}
.aspect-ratio--portrait {
  height: 0;
  overflow: hidden;
  padding-top: calc(16 / 9 * 100%);
  background: white;
  position: relative;
}
.aspect-ratio-inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 500px) {
  .feed {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 800px) {
  .feed {
    grid-template-columns: repeat(3, 1fr);
  }
}

.profile {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.profile img {
  border-radius: 50%;
  height: 5rem;
  width: 5rem;
  display: inline-block;
  margin: 0;
}
.profile .account-name {
  display: inline-block;
  margin: 0;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.profile p {
  margin: 0;
}
