/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  text-align: center;
  background-color: #fff;
  color: #111;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight: bold;
  margin-top: 30px;
}

/* Header */
h1 {
  font-size: 2.5rem;
  background: repeating-linear-gradient(
    -45deg,
    #ff6a00,
    #ff6a00 5px,
    transparent 5px,
    transparent 10px
  );
  display: inline-block;
  padding: 20px 40px;
  margin-top: 30px;
}

.tagline {
  margin-top: 10px;
  font-size: 1rem;
}

/* Article list */
.article-list {
  margin: 50px auto;
  font-size: 1.25rem;
}

.article-list a {
  text-decoration: none;
  color: black;
}

.new-arrow {
  display: inline-block;
  font-size: 1rem;
  margin-left: 10px;
  transform: rotate(-10deg);
}

/* Footer */
footer {
  margin-top: 100px;
  font-size: 0.9rem;
  color: #666;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: white;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Optional: constrain content width */
main, header, footer {
  max-width: 800px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight: bold;
  margin-top: 20px;
}

nav a {
  text-decoration: none;
  color: black;
}

/* Logo */
header img {
  max-width: 200px;
  margin: 20px auto;
  display: block;
}

/* Tagline */
.tagline {
  margin-top: 10px;
  font-size: 1rem;
  color: #444;
}

/* Article List */
.article-list {
  margin-top: 50px;
  font-size: 1.2rem;
}

.article-list a {
  text-decoration: none;
  color: black;
}

.new-arrow {
  font-size: 0.9rem;
  margin-left: 8px;
  display: inline-block;
  transform: rotate(-10deg);
}

/* Footer */
footer {
  margin-top: 80px;
  font-size: 0.9rem;
  color: #666;
}