﻿/* Grundlegende Formatierungen */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #000;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
}


/* Hauptbereich */

.box {
  padding-top: 250px;
}
h1 {
  margin-bottom: 20px;
}
.box p {
  font-size: 20px;
}

/* Footer */
footer {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 1rem 0;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100px;
  width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  header h1 {
    font-size: 1.5rem;
  }
}
