/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin: 0 auto;
  padding: 0;
  line-height: 1.6;
  max-width: 1024px;
  background-color: rgb(242, 237, 229);
}

/* Navbar */
.topnav {
  display: flex;
  justify-content: center;
  background-color: rgb(190, 0, 13);
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius: 0 0 8px 8px;
}

.topnav a {
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}

.topnav a:hover {
  background-color: rgb(160, 0, 10);
}

/* #home {
  display: none;
} */

#easter {
  display: none;
}

#christmas {
  display: none;
}

/* Page Header */
header {
  text-align: center;
  margin: 28px 16px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(40, 10, 10);
  letter-spacing: 0.02em;
}

header::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: rgb(190, 0, 13);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Main Content */
.main {
  min-height: 100vh;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 20px;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  background-color: rgb(190, 0, 13);
  padding: 7px 14px;
  border-radius: 8px;
}

.wrapper {
  padding: 10px;
}

p {
  padding: 20px;
}

.link-source {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgb(136, 136, 136);
  padding: 20px;
}

a[href^="mailto:"] {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
a[href^="mailto:"]:hover {
  text-decoration: underline;
  color: rgb(190, 0, 13);
}

a[href^="mailto:"]:visited {
  color: rgb(0, 0, 0);
  cursor: pointer;
}

.link-source a:link {
  color: rgb(136, 136, 136);
  text-decoration: none;
  cursor: pointer;
}

.link-source a:hover {
  text-decoration: underline;
}

.link-source a:visited {
  color: rgb(136, 136, 136);
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 10px;
  background-color: rgb(190, 0, 13);
  border-radius: 8px 8px 0 0;
}

.footer a,
.footer span {
  color: white;
  text-decoration: none;
  font-size: 10px;
}
