/* Font-Face */
@font-face {
  font-family: 'Dela Gothic One';
  src: url('fonts/dela-gothic-one-v18-japanese_latin-regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  background-image: url('https://streetfashionarchive.neocities.org/graphy-dark.png');
  font-family: 'Dela Gothic One', serif;
}

/* Header */
#header {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1180px;
  z-index: 1;
}

#header img {
  width: 100%;
  height: auto;
  display: block;
}

/* Weißer Container */
.white-container {
  background-color: white;
  max-width: 1100px;
  margin: 450px auto 0 auto;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Titel */
.header-title {
  text-align: center;
  font-size: 58px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.subline {
  text-align: center;
  font-size: 17px;
  color: #ff0078;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.content {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  text-align: justify;
}

.japanese-font {
  font-family: 'Dela Gothic One', sans-serif;
}

/* Social Icons */
.social-icons {
  text-align: center;
  margin-top: 20px;
}

.social-icons img {
  width: 30px;
  height: auto;
  margin: 0 10px;
}

/* News Box */
.news-box {
  max-width: 900px;
  margin: 60px auto;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
}

.news-box h1 {
  color: #ff0078;
  font-size: 28px;
  text-align: center;
}

.news-item {
  display: flex;
  align-items: center;
}

.news-item img {
  width: 300px;
  height: auto;
  margin-right: 10px;
}

.news-text h3 {
  margin: 0;
  font-size: 20px;
}

/* Blog Table */
.blog-table {
  max-width: 1000px;
  margin: 60px auto;
  font-size: 17px;
  color: #222;
}

.blog-table h2 {
  text-align: center;
  margin-bottom: 30px;
}

.blog-table table {
  width: 100%;
  border-collapse: collapse;
}

.blog-table th, 
.blog-table td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
}

.blog-table th {
  background: #f8f8f8;
}

/* Copyright */
.copyright {
  text-align: center;
  color: #ff0078;
  margin: 40px 0;
}