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

/* remove default spacing */
/* force styling of type through styling, rather than elements */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* dark mode user-agent-styles */
html {
  color-scheme: dark light;
}

/* min body height */
body {
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  max-width: 700px;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
textarea,
button,
select {
  font: inherit;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  margin-bottom: 3rem;
  transform: rotate(-2deg) translateY(10px) translateX(-5px);
}

h1 {
  display: inline-block;
  padding: 0rem 0.5rem 0.25rem;
  background: tomato;
  color: white;
  font-size: 2rem;
}

p {
  /* display: inline-block; */
  font-size: 0.75rem;
}

h1 span {
  opacity: 0.25;
  /* letter-spacing: -0.15ch; */
}

h2 {
  margin: 0.75rem 0;
  font-size: 1.75rem;
  font-size: 2rem;
}

article {
  margin: 1rem 0;
  margin-bottom: 2rem;
}

article p {
  /* margin: 0.25rem 0; */
  margin-block-end: 0.75rem;
  font-size: 1rem;
  padding-left: 1rem;
  border-left: 5px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.75);
}

article footer {
  margin-top: 0.5rem;
  display: none;
}

article footer span {
  margin: 0;
  padding: 0.25rem 0.25rem;
  margin-inline-end: 0.5rem;
  background-color: initial;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid rgba(0, 0, 0, 0.25);
}


a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid tomato;
  border-color: rgba(0, 0, 0, 0.2);
}

article quote {
  padding-left: 1rem;
  border-left: 5px solid rgba(0, 0, 0, 0.2);
}


a:focus,
a:hover {
  border-bottom: 5px solid tomato;
  transition: border 0.2s;
}
