/* =======================
   Datei: cheatsheet.css
   Beschreibung: Nur für cheatsheet.html
========================== */

body.cheatsheet-page {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #d4cece, #0a767a);
  color: white;
  margin: 0;
  padding: 0;
  display: flex;
}

.content-wrapper {
  margin-left: 250px;
  flex-grow: 1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 40px;
}

.content {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.cheatsheet-image {
  max-width: 100%;
  height: auto;
  border: 4px solid #f37021;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* === Mobilansicht === */
@media (max-width: 768px) {
  body.cheatsheet-page {
    display: block;
  }

  .content-wrapper {
    margin-left: 0;
    padding: 20px;
  }

  .cheatsheet-image {
    width: 100%;
    border-width: 3px;
  }
}
