<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
html, * {
  margin: 0;
  padding: 0;
}

* { box-sizing: border-box; }

body {
  font-family: 'Miriam Libre', sans-serif;
  min-width: 300px;
}


header {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: left;
  align-items: center;
  background: yellow;
}
@media (min-width: 300px) {

header { font-size: 1rem; text-align:center; }
}

header .display-block { display: block; }


.display-block {
  font-family: "Questrial", sans-serif;
  font-weight: 100;
  font-size: 50px;
  font-style: italic;
  letter-spacing: 20px;
  text-align: left;
  padding-left: 20px;
  line-height: 100px;
}


a:link {
  color: blueviolet;
  text-shadow: 2px 2px red;
  text-decoration: none;
}


a:hover {
  color: #bf2267;
  text-shadow:none
}

a:active {
  color: green;
}


</pre></body></html>