:root {
  color-scheme: dark;
  font-family: Arial, sans-serif;
  background: #050505;
}

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

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

body {
  min-width: 280px;
  background-color: #050505;
  background-image: url("/assets/wyrd-background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.landing {
  min-height: 100vh;
  padding: 80px 15px 32px;
}

.brand-panel {
  width: min(100%, 600px);
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  background: rgb(0 0 0 / 60%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 33%);
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 60px;
  margin: 0 auto 25px;
  object-fit: contain;
}

.linkedin-link {
  display: inline-grid;
  width: 64px;
  height: 56px;
  place-items: center;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    outline-color 160ms ease;
}

.linkedin-link span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #111;
  background: #fff;
  border-radius: 2px;
}

.linkedin-link:hover {
  background: rgb(255 255 255 / 19%);
}

.linkedin-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.brand-panel h1 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fff;
}

.home-link {
  color: #fff;
  text-underline-offset: 3px;
}

.home-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

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

@media (max-width: 767px) {
  body {
    background-attachment: scroll;
  }

  .landing {
    padding-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .linkedin-link {
    transition: none;
  }
}
