body {
    margin: 0;
    overflow: hidden;
    font-family: sans-serif;
}

.slider_wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    display: flex;
    width: 300vw;
    height: 100%;
    transform: translateX(-100vw); /* Start direkt bei Seite 2 */
    transition: none; 
}

.page, .page_404 {
    flex: 0 0 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.page_404 {
    background-color: aquamarine;
}





/* Hintergrundfarben */
.page:nth-child(1) { background: #E773ED; }
.page:nth-child(2) { background: #3421FF; color: #000; }
.page:nth-child(3) { background: #49F858; }





/* Buttons */
.page_buttons {
    margin-top: 20px;
    display: flex;
}

.page_buttons button {
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
    color: #060606;
    background-color: #ff8c00;
}






/* Bild Hover */
.bild_container {
    width: 300px;
    overflow: visible;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.bild_container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.bild_container:hover img {
    transform: scale(1.3);
}



/* Font styling */
h1, h2, h3, p {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    color: #fff;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Azeret Mono', monospace;
    letter-spacing: 2px;
    color: yellow;
}

h2 {
    font-size: 1.8rem;
    font-family: 'Architects Daughter';
    color: #ff6ce6;
}

h3 {
    font-size: 1.5rem;
    font-family: 'Architects Daughter';
    color: yellow;
}

p {
    font-size: 1rem;
    font-family: 'Azeret Mono', monospace;
    color: yellow;
}

.fontstyle_insult {
    color: crimson;
    font-size: 1.5rem;
    padding-inline: 5rem;
    text-shadow: none;
}


/* Header */
.header_wrapper {
    width: 100vw;
    max-height: 30vh;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.logo_container {
    display: flex;
    justify-content: flex-end;
    padding: 0 5rem;
}

.titel_container {
    display: flex;
    justify-content: center;
}

/* Inhalte */
.content_wrapper, .content_wrapper_joke {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.content_wrapper_joke {
    background-image: url('../_static/rainbow.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain; 
}

.start_subtitle,
.start_text,
.start_image,
.start_buttons,
.joke_subtitle,
.joke_buttons,
.joke_image,
.insult_subtitle,
.insult_output,
.insult_buttons,
.title_404,
.subtitle_404,
.image_404 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.joke_subtitle {
    padding-top: 3rem;
    height: 6rem;
}

.joke_image {
    height: 30vh;
}

.insult_output {
    height: 30vh;
    width: 40vw;
    background-color: rgb(247, 237, 226);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}



/* Footer */

.footer_wrapper_insult {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.insult_disclaimer_fontstyle {
    text-align: right;
    vertical-align:middle;
    padding-right: 2rem;
    padding-left: 10vw;
}




/* ID's für Bildgrössen */
#header_logo {
    width: 15rem;
    max-width: 150px;
}

#titel_logo {
    width: 70%;
    max-width: 500px;
}

#image_mouse{
    height: 100%;
}


#image_insulthamster {
    height: 45%;
}

#start_disclaimer {
    width: 20%;
    max-width: 300px;
}

#image_404 {
    width: 60%;
    max-width: 300px;
}


/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    p  { font-size: 0.95rem; }
    .page_buttons button { font-size: 1.1rem; }
    .fontstyle_insult { font-size: 1.3rem; padding-inline: 5rem; }
}

/* Handy (≤ 768px) */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1.1rem; }
    p  { font-size: 0.9rem; }
    .page_buttons button { font-size: 1rem; }
    .fontstyle_insult { font-size: 1.1rem; padding-inline: 2rem; }
}

/* Kleinstgeräte (≤ 480px) */
@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1rem; }
    h3 { font-size: 0.95rem; }
    p  { font-size: 0.85rem; }
    .page_buttons button { font-size: 0.9rem; }
    .fontstyle_insult { font-size: 1rem; padding-inline: 1rem; }
}

@media (max-width: 600px) {
    .page_buttons {
      flex-direction: column; 
      align-items: center;
    }
}