/* ======================================================
   FONTS
====================================================== */
@font-face {
    font-family: 'CookGothif';
    src: url('CookGothif.otf') format('opentype');
}


/* ======================================================
   RESET & BASIS
====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}


/* ======================================================
   SCROLLBAR (ROT AUF SCHWARZ)
====================================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: red;
}

::-webkit-scrollbar-button {
    background: red;
}


/* ======================================================
   HEADER
====================================================== */
.comic-header {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

.comic-logo {
    max-width: 250px;
    margin-bottom: 20px;
}


/* ======================================================
   HEADLINES
====================================================== */
.comic-header h2 {
    font-family: 'CookGothif', Arial Black, sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.comic-header h1 {
    font-family: 'CookGothif', Arial Black, sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
}


/* ======================================================
   PDF DOWNLOAD LINK
====================================================== */
.pdf-download {
    display: inline-block;
    margin-top: 10px;

    font-family: 'CookGothif', Arial Black, sans-serif;
    text-transform: uppercase;

    color: red;
    text-decoration: none;
    font-size: 16px;

    transition: color 0.3s ease;
}

.pdf-download:hover {
    color: #fff;
}


/* ======================================================
   COMIC CONTAINER
====================================================== */
.comic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    padding: 40px 0 60px 0;
}


/* ======================================================
   COMIC PAGES
====================================================== */
.comic-page {
    width: 90%;
    max-width: 900px;
    height: auto;

    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
}