
* { box-sizing: border-box;
  font-size: 14px; 
  color: #000000; 
  margin-top: 8px;  
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #f4f4f4;
  line-height: 1.5;
}

a { color: rgb(0, 0, 0); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}
header { 
  margin-bottom: 16px; 
}
h1, h2, h3 { 
  margin: 0 0 50px 0; 
}
h1 { font-size: 180px; }
h2 { 
  font-size: 80px;
  font-weight: normal;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 16px;
}
.card {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #000000;
}
.card:hover { 
  border: 4px solid #000000;
  transition: border 0.5s ease-in-out;
}

.thumb {
  width: 100%;
  aspect-ratio: 3/4;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;        /* wichtig, damit nichts übersteht */
  position: relative;      /* damit das Video absolut platziert werden kann */
}

.thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* Video beschneidet sich passend, ohne Verzerren */
  display: block;
}


.footer { margin-top: 32px; font-size: 13px; color: #000000; }
.nav { margin: 8px 0 16px 0; }
hr { border: none; border-top: 1px solid #2a2a2a; margin: 16px 0; }


/* UNTERSEITEN */
.container {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertikal */
  height: auto;           /* oder Höhe des Containers */
}
.facepage {
  width: 50%;
  height: auto;
  object-fit: cover;
}