/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Montserrat', sans-serif;


  background: linear-gradient(
    to bottom,
    #d92c2c 0%,
    #f2a7a7 45%,
    #ececec 100%
  );

  min-height: 100vh;

  
}

/* ZURÜCK BUTTON */
.back-button {
  position: fixed;

  top: 30px;
  left: 30px;

  text-decoration: none;

  background: white;

  padding: 12px 18px;

  border-radius: 12px;

  color: black;

  font-weight: 600;

  box-shadow: 0 6px 15px rgba(0,0,0,0.15);

  transition: 0.2s;
}

.back-button:hover {
  transform: translateY(-3px);
}

/* CONTAINER */
.container {
  max-width: 800px;

  margin: auto;

  padding: 100px 30px;
}

/* TITEL */
h1 {
  font-size: 60px;

  text-align: center;

  margin-bottom: 50px;

  letter-spacing: 4px;
}

/* TEXT */
.about-text {
  font-size: 20px;

  line-height: 1.8;

  text-align: center;

  margin-bottom: 80px;
}

/* IMPRESSUM */
.impressum {
  background: rgba(255,255,255,0.7);

  backdrop-filter: blur(10px);

  padding: 40px;

  border-radius: 24px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.impressum h2 {
  margin-bottom: 25px;

  font-size: 32px;
}

.impressum p {
  margin-bottom: 18px;

  line-height: 1.7;
}


/* MOBILE VERSION */
@media (max-width: 768px) {

  .grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    padding: 10px;
  }

  .card {
    width: 100%;
  }

  .card img {
    width: 100%;

    height: auto;
  }

  .title {
    font-size: 38px;

    text-align: center;
  }

  .subtitle {
    font-size: 16px;

    line-height: 1.5;

    padding: 0 10px;
  }

  .flagge,
  .flagge2 {
    width: 70px;
  }
}