:root {
  --bg-color: #d0d9d0;
}

body {
   margin: 0;
  font-family: Georgia, serif;
  background-color: var(--bg-color);
  color: black;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 1rem;
}



h1 {
  letter-spacing: -0.05em;
  line-height: 0.3;
   font-family: 'Courier New', monospace;
  font-style: italic;
  font-weight: normal;
  font-size: 3rem;
  text-align: center;
}


img {
  display: block;
  margin: 0 auto;
  max-width: 560px;
  width: 100%;
}

#clock {
  text-align: center;
  font-style: italic;
}

nav {
  text-align: center;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shoutout {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  color: var(--bg-color);
  display: flex;
  gap: 4px;
}

.shoutout p {
  margin: 0;
}

.shoutout a {
  color: var(--bg-color);
}