@charset "UTF-8";

body {
  background-color: lightgray;
}

img {
  width: 100vw;
  height: auto;
  position: fixed;
  /* if fixed, no more transparent background??? */
  top: 0px;
  left: 0px;
}

h1 {
  width: 100vw;
  padding-top: 5vh;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: yellow;
  text-shadow: 2px 2px 10px rgb(22, 22, 22);
  /* background-color: red; */
  font-size: 5vh;
  line-height: 5vh;
  text-align: center;
  position: fixed;
  top: 30vh;
}
a {
  color: yellow;
  font-style: italic;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
