:root {
  color-scheme: dark;
  background: #000;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  background-color: #000;
  background-image: url("landon.gif");
  background-repeat: repeat;
  color: #fff;
  font-family: system-ui, sans-serif;
}

main {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
}

.artwork {
  display: block;
  width: auto;
  max-width: 100vw;
  height: calc(100vh - 6.5rem);
  min-height: 0;
  object-fit: contain;
  background: #000;
}

.download-area {
  width: 100%;
  min-height: 6.5rem;
  padding: 1.5rem;
  text-align: center;
}

.download-button,
.play-button {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.play-button {
  margin-left: 0.75rem;
  cursor: pointer;
  font: inherit;
}

.download-button:focus-visible,
.play-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
