/* FULL PAGE RESET */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* BACKGROUND PAPER */
body {
  background-image: url("paper.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;

  font-family: Georgia, "Times New Roman", serif;
  color: black;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CENTER CONTENT */
.center {
  width: 90%;
  max-width: 800px;
}

/* TITLE */
.title {
  font-size: clamp(36px, 6vw, 70px);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: black;
}

/* SUBTITLE */
.subtitle {
  font-size: clamp(14px, 2vw, 20px);
  margin-bottom: 30px;
  color: darkred;
}

/* BIRD IMAGE */
.bird {
  width: min(350px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.bird:hover {
  transform: scale(1.03);
}

/* LINKS */
a {
  text-decoration: none;
  color: darkred;
  font-weight: bold;
}

a:hover {
  color: red;
}