:root {
  --blue: rgb(6 109 255);
  background: var(--blue);
}

@supports (color: color(display-p3 0 0 0)) {
  :root {
    --blue: color(display-p3 0.1843 0.4196 1);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--blue);
}

main {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.logo {
  display: block;
  width: min(70vw, 460px);
  height: auto;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  font-family: ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

a {
  display: grid;
  grid-template-columns: 22px auto;
  align-items: center;
  column-gap: 13px;
  color: #fff;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

a:focus-visible {
  border-radius: 4px;
  outline: 2px solid #fff;
  outline-offset: 5px;
}

.brand-icon {
  display: block;
  width: 18px;
  height: 18px;
  justify-self: center;
}

.etsy-icon {
  display: block;
  width: 16px;
  height: 16px;
  justify-self: center;
}
