html {
  scroll-behavior: smooth;
  cursor: default;
}

body {
  background-image: url(Bilder/backgroundImage_lines.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: 100%;
  overflow-x: hidden;
  margin: auto;
  height: 0;
}

/* Allgemeine Konfigurationen für die Paragraphen */
p {
  font-family: "Overpass", sans-serif;
  font-style: normal;
}

/* Allgemeine Konfigurationen für Überschriften */
h1 {
  text-align: center;
  font-family: "Mukta", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  background-color: rgb(44, 44, 44);
  color: white;
  border-block: solid;
  border-width: 2px;
  margin-block: 1rem;
}

h2 {
  text-align: center;
  font-family: "Mukta", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-block: 2rem;
  color: white;
}

label {
  color: white;
}

.fade-in {
  opacity: 0;
}

.is-faded {
  position: relative;
  animation: fadeIn 800ms both;
}

/* ▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌ */

/* Animationen */

/* Einblende-Animation für Dejan im Kopfbereich. */
@keyframes titelbild_animation_mobile {
  0% {
    right: -50px;
    opacity: 0;
  }

  100% {
    right: 50px;
    opacity: 1;
  }
}

/* Einblende-Animation für Dejan im Kopfbereich. */
@keyframes titelbild_animation_tablet {
  0% {
    right: -150px;
    opacity: 0;
  }

  100% {
    right: 50px;
    opacity: 1;
  }
}

/* Einblende-Animation für Dejan im Kopfbereich. */
@keyframes titelbild_animation_desktop {
  0% {
    right: -150px;
    opacity: 0;
  }

  100% {
    right: 35px;
    opacity: 1;
  }
}

/* Einblende-Animation für den grünen Play-Knopf. */
@keyframes greenButton_fadein_mobile {
  0% {
    top: 300px;
  }

  100% {
    top: 0px;
  }
}

/* Einblende-Animation für den grünen Play-Knopf. */
@keyframes greenButton_fadein_tablet {
  0% {
    top: 300px;
  }

  100% {
    top: -30px;
  }
}

/* Einblende-Animation für den grünen Play-Knopf. */
@keyframes greenButton_fadein_992px_desktop {
  0% {
    top: 500px;
  }

  100% {
    top: -30px;
  }
}

@keyframes greenButton_fadein_1200px_desktop {
  0% {
    top: 500px;
  }

  100% {
    top: -50px;
  }
}

/* Druck-Animation des grünen Knopfes */
@keyframes scale {
  0% {
    scale: 1.0;
  }

  50% {
    scale: 0.8;
  }

  100% {
    scale: 1.0;
  }
}

/* Animationen für die Katze */
@keyframes tail_wiggle {

  0% {
    transform: rotate(320deg);
  }

  50% {
    transform: rotate(350deg);
  }

  100% {
    transform: rotate(320deg);
  }
}

@keyframes tail_wiggle_reflection {

  0% {
    transform: rotate(30deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(30deg);
  }
}

@keyframes sprechblase_kopf {
  0% {
    scale: 1
  }

  50% {
    scale: 1.3
  }

  100% {
    scale: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌ */

/* Anzeige auf Handys */

@media (min-width: 320px) {

  #story_description_swisscom_mobile {
    display: block;
  }

  #story_description_swisscom_desktop {
    display: none;
  }

  #story_description_security_desktop {
    display: none;
  }

  #catSection_mobile {
    display: block;
  }

  #catSection_desktop {
    display: none;
  }

  #kinder_foto {
    display: block;
  }

  #story_description_security_mobile {
    margin: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 0.4rem;
    min-width: 17rem;
    max-width: 25rem;
  }

  .story_image {
    margin: auto;
    width: 90%;
    max-width: 20rem;
    box-shadow: 0.5rem 0.5rem 1.5rem;
    border-radius: 22% 6%;
    z-index: 10;
  }

  #beginne_die_reise_text {
    margin-block: auto;
    font-size: 0.9rem;
    font-weight: 700;
  }

  #beginne_die_reise_div {
    display: none;
    position: relative;
    margin-block: auto;
    justify-content: center;
    gap: 1rem;
    color: rgb(3, 0, 194);
    z-index: 30;
  }

  #greenButton {
    position: relative;
    width: 2.8rem;
    z-index: 20;
    margin: auto;
    animation: greenButton_fadein_mobile 2.4s 1, scale 1.5s infinite 2.7s linear;
  }

  #titel {
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    background-color: white;
    color: black;
  }

  #flexbox_header {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: space-evenly;
    overflow: hidden;
  }

  #header_text_div {
    background-color: rgba(253, 254, 255, 0.936);
    padding: 0.3rem;
    min-width: 12rem;
    max-width: 16rem;
    border-style: solid;
    border-radius: 5px;
    border-width: 2px;
    z-index: 10;
    margin-block: 0.5rem;
    margin-left: 0.5rem;
  }

  #header_text {
    margin: 0;
    font-size: 0.85rem;
  }

  #titelbild {
    position: relative;
    object-fit: contain;
    width: 6rem;
    animation-name: titelbild_animation_mobile;
    animation-duration: 1.2s;
    scale: 2.7;
    top: 50px;
    right: 50px;
  }

  #hintergrundvideo {
    position: absolute;
    bottom: 35px;
    width: 100%;
    scale: 2;
  }

  #zukunft_ist_vergangenheit {
    margin-top: 0;
  }

  #timeOut_div {
    padding-inline: 1rem;
  }

  #swisscom_div {
    padding-inline: 1rem;
  }

  #interdiscount_div {
    width: 100%;
  }

  #luchswiesen_div {
    padding-inline: 1rem;
  }

  #zeichnung {
    box-shadow: 0.5rem 0.5rem 1.5rem;
    width: 90%;
    max-width: 19rem;
    margin: auto;
  }

  #hollywood_foto {
    width: 90%;
    max-width: 19rem;
  }

  #swisscom_image_dejan {
    width: 100%;
    max-width: 10.5rem;
    box-shadow: 0.5rem 0.5rem 1.5rem;
  }

  #swisscom_image_jozef {
    width: 100%;
    max-width: 8.5rem;
    box-shadow: 0.5rem 0.5rem 1.5rem;
  }

  .flexbox_story {
    position: relative;
    flex-direction: column;
    display: flex;
    gap: 1rem;
    padding-inline: 1rem;
    justify-content: center;
    margin-top: 1rem;
  }

  #flexbox_story_swisscom {
    position: relative;
    flex-direction: row;
    display: flex;
    gap: 0.5rem;
    padding-inline: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
  }

  #flexbox_story_security {
    position: relative;
    flex-direction: column-reverse;
    display: flex;
    gap: 1rem;
    padding-inline: 1rem;
    justify-content: center;
    margin-block: 1rem;
  }

  .flexbox_story_special {
    position: relative;
    flex-direction: column;
    display: flex;
    gap: 1rem;
    padding-inline: 1rem;
    justify-content: center;
    margin-block: 1rem;
    overflow: visible;
  }

  #timeout_description {
    margin-block: 1rem;
  }

  /*Styling für die Textboxen*/
  .story_description_bottom {
    padding: 0.4rem;
    margin: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 0.9rem;
    min-width: 18rem;
    max-width: 25rem;
  }

  .story_description_side {
    margin: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 0.4rem;
    min-width: 17rem;
    max-width: 25rem;
  }

  #story_description_swisscom_mobile {
    padding: 0.4rem;
    margin: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 0.9rem;
    min-width: 17rem;
    max-width: 25rem;
  }

  .musicVideo {
    width: 90%;
    max-width: 19rem;
    margin: auto;
    height: fit-content;
    box-shadow: 0.5rem 0.5rem 1.5rem;
  }

  #unterer_container {
    position: relative;
    overflow: hidden;
    z-index: 10;
  }

  #kontakt_Header {
    margin-top: -10px;
    z-index: 20;
  }

  /* Cat ↓ -------------------------------------- */

  #sprechblase_kopf_div {
    position: relative;
    top: -20px;
    left: -125px;
    z-index: 10;
  }

  #sprechblase_kopf {
    width: 6rem;
    transform: none;
    animation-name: sprechblase_kopf;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  #sprechblase_schwanz_div {
    position: relative;
    top: 20px;
    left: -140px;
    z-index: 10;
  }

  #sprechblase_schwanz {
    position: relative;
    width: 3rem;
    z-index: 10;
  }

  #cat_div {
    position: relative;
    display: flex;
    justify-content: center;
    top: 70px;
    padding-left: 100px;
    padding-top: 2rem;
    z-index: 30;
    overflow: hidden;
    height: max-content;
  }

  #cat {
    position: relative;
    width: 9rem;
    z-index: 30;
  }

  #cat_tail_div {
    position: relative;
    left: -135px;
    top: 110px;
    z-index: 20;
  }

  #cat_tail {
    position: relative;
    width: 3.5rem;
    z-index: 20;
    transform: rotate(320deg);
    transform-origin: 100% 100%;
    animation-name: tail_wiggle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  #cat_tail_reflection_div {
    position: relative;
    left: -200px;
    top: 230px;
    z-index: 50;
  }

  #cat_tail_reflection {
    position: relative;
    width: 4.5rem;
    z-index: 20;
    transform: rotate(320deg);
    transform-origin: 100% 0%;
    animation-name: tail_wiggle_reflection;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  /* Cat ↑ -------------------------------------- */

  #absendeKnopf {
    position: relative;
    padding-inline: 10px;
    left: 0;
    right: 0;
    font-size: 1rem;
    width: fit-content;
    height: 40px;
    border-color: rgb(82, 128, 254);
    border-width: 3px;
    border-radius: 100px;
    margin-inline: auto;
  }

  #marmor {
    position: relative;
    width: 100%;
    transition: none;
    transform: none;
    z-index: 0;
    scale: 1;
    top: -30px;
  }

  #formular_section {
    position: relative;
    z-index: 30;
    bottom: 30px;
    background-size: 100%;
    padding-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.768);
  }

  #fragenOderAnregungen {
    text-align: center;
  }

  #sendenErfolgreich {
    display: none;
  }

  #sendenFehlgeschlagen {
    display: none;
  }

  #formular {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
    color: rgb(0, 0, 0);
    padding-inline: 2rem;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    font-family: "Overpass", sans-serif;
    font-size: 0.7rem;
    margin-top: 2rem;
  }

  #flexbox_name {
    display: flex;
    gap: 2%;
  }

  input[type=text] {
    font-size: 0.8rem;
  }

  input[type=email] {
    font-size: 0.8rem;
  }

  textarea {
    font-size: 0.8rem;
    font-family: Arial, Helvetica, sans-serif;
  }

  button {
    font-size: 0.8rem;
  }

  #textAreaBox_Container {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .eingabefelder {
    border-color: rgb(0, 23, 85);
    border-width: 1px;
  }

  label {
    font-size: 0.9rem;
  }

  #name_div {
    width: 100%;
  }

  #name {
    width: 100%;
    height: 1.8rem;
  }

  #emailAbsender {
    width: 100%;
    height: 1.8rem;
  }

  #nachricht {
    width: 100%;
  }

  #textArea {
    width: auto;
    height: fit-content;
  }

  #flexbox_knopf {
    display: flex;
    justify-content: center;
  }

  /* Konfiguration für die vergrösserten Bilder auf dem Handybildschirm nach dem Drauftippen */
  .vergroessertes_bild {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.879);
    padding-block: 40vh;
    padding-inline: 2.5vw;
    width: 95% !important;
    max-width: 96% !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0;
    z-index: 50 !important;

    overflow: hidden;
  }

  /* Verhindert das  Scrollen, wenn Fotos auf dem Handy gross angeschaut werden. */
  .disable_scroll_mobile {
    height: 100%;
    overflow: hidden;
  }
}

/* ▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌ */
/* Anzeige auf Tablets*/
@media (min-width: 600px) {

  label {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  img {
    transition: 0.3s ease;
  }

  img:hover {
    scale: 1.1;
  }

  #flexbox_story_swisscom {
    overflow: visible;
    padding-inline: 1rem;
    gap: 1rem;
  }

  #story_description_security_mobile {
    display: none;
  }

  #story_description_security_desktop {
    display: block;
    margin: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 0.4rem;
    min-width: 15rem;
    max-width: 25rem;
  }

  #story_description_security_desktop:hover {
    border-color: rgb(0, 64, 255);
    background-color: white;
    transition: 0.2s;
  }

  #hintergrundvideo {
    position: absolute;
    bottom: 35px;
    width: 100%;
    scale: 1.2;
  }

  #flexbox_header {
    position: relative;
    display: flex;
    gap: 5rem;
    justify-content: space-evenly;
    overflow: hidden;
  }

  .flexbox_story {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding-inline: 1rem;
    justify-content: center;
    margin-block: 1rem;
  }

  #beginne_die_reise_div {
    display: flex;
    position: relative;
    margin-block: auto;
    justify-content: center;
    gap: 1rem;
    color: rgb(3, 0, 194);
    z-index: 30;
  }

  #header_text {
    margin: 0;
    font-size: 1rem;
  }

  #header_text_div {
    font-size: 0.8rem;
    padding: 0.6rem;
    margin-block: 1rem;
    margin-left: 0.5rem;
    max-width: 25rem;
  }

  #greenButton_anker {
    left: 260px;
    top: -30px;
    animation: greenButton_fadein_tablet 2.4s 1, scale 1.5s infinite 2.7s linear;
  }

  #greenButton {
    display: block;
    width: 3.5rem;
  }

  .story_image {
    width: 50%;
    max-width: 20rem;
  }

  #titelbild {
    position: relative;
    object-fit: contain;
    width: 13rem;
    animation-name: titelbild_animation_tablet;
    animation-duration: 1.2s;
    top: 55px;
    right: 50px;
    scale: 1.5;
  }

  #federer {
    width: 50%;
    max-width: 20rem;
  }

  #swisscom_image_dejan {
    width: 100%;
    max-width: 13rem;
  }

  #swisscom_image_jozef {
    width: 100%;
    max-width: 10rem;
  }

  #zeichnung {
    width: 80%;
    max-width: 19rem;
  }

  #hollywood_foto {
    width: 45%;
    max-width: 18rem;
  }

  .musicVideo {
    width: 50%;
    max-width: 21rem;
  }

  .story_description_side {
    font-size: 0.9rem;
    min-width: 10rem;
    max-width: 25rem;
  }

  /* Styling für die Textboxen nachdem der Mauszeiger darüber zeigt */
  .story_description_side:hover {
    border-color: blue;
    background-color: white;
    transition: 0.2s;
  }

  .story_description_bottom {
    font-size: 0.9rem;
    min-width: 10rem;
    max-width: 25rem;
  }

  .story_description_bottom:hover {
    border-color: blue;
    background-color: white;
    transition: 0.2s;
  }

  #story_description_swisscom_desktop {
    display: block;
    padding-inline: 0.4rem;
    padding-block: 0.5rem;
    margin-block: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 0.9rem;
    min-width: 12rem;
    max-width: 25rem;
  }

  #story_description_swisscom_desktop:hover {
    border-color: blue;
    background-color: white;
    transition: 0.2s;
  }


  .flexbox_story_special {
    position: relative;
    flex-direction: row;
    display: flex;
    gap: 1rem;
    padding-inline: 1rem;
    justify-content: center;
    margin-block: 1rem;
    overflow: visible;
  }

  /* Cat ↓ -------------------------------------- */
  #sprechblase_kopf_div {
    position: relative;
    top: -20px;
    left: -125px;
    z-index: 10;
  }

  #sprechblase_kopf {
    width: 7rem;
    transform: none;
    animation-name: sprechblase_kopf;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  #sprechblase_schwanz_div {
    position: relative;
    top: 20px;
    left: -140px;
    z-index: 10;
  }

  #sprechblase_schwanz {
    position: relative;
    width: 3rem;
    z-index: 10;
  }

  #cat_div {
    position: relative;
    display: flex;
    justify-content: center;
    top: 90px;
    padding-left: 90px;
    z-index: 30;
    overflow: visible;
  }
  
  #cat {
    position: relative;
    width: 10rem;
    z-index: 30;
    cursor: pointer;
  }

  #cat_tail_div {
    position: relative;
    left: -145px;
    top: 130px;
    z-index: 20;
  }

  #cat_tail {
    position: relative;
    width: 3.5rem;
    z-index: 20;
    transform: rotate(320deg);
    transform-origin: 100% 100%;
    animation-name: tail_wiggle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  #cat_tail_reflection_div {
    position: relative;
    left: -210px;
    top: 255px;
    z-index: 50;
  }

  #cat_tail_reflection {
    position: relative;
    width: 4.5rem;
    z-index: 20;
    transform: rotate(320deg);
    transform-origin: 100% 0%;
    animation-name: tail_wiggle_reflection;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  /* Cat ↑ -------------------------------------- */

  #formular {
    padding-inline: 20%;
    font-size: 1rem;
  }

  #titel {
    font-weight: 500;
    font-size: 2rem;
  }

  #story_description_swisscom_mobile {
    display: none;
  }

  #fragenOderAnregungen {
    font-size: 1.5rem;
  }

  #name {
    width: 50%;
    height: 1.2rem;
  }

  #emailAbsender {
    width: 50%;
    height: 1.2rem;
  }

  #nachricht {
    width: 100%;
  }

  #absendeKnopf {
    position: relative;
    padding-inline: 10px;
    left: 0;
    right: 0;
    font-size: 1.5rem;
    width: fit-content;
    height: 40px;
    border-color: rgb(82, 128, 254);
    border-width: 4px;
    border-radius: 100px;
    margin-inline: auto;
  }

}

/* ▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌ */
/* Anzeige auf Desktops*/
@media (min-width: 992px) {

  #flexbox_story_swisscom {
    padding-block: 1rem;
    gap: 2rem;
  }

  #story_description_swisscom_mobile {
    display: none;
  }

  #story_description_swisscom_desktop {
    display: block;
    padding-inline: 0.4rem;
    padding-block: 0.5rem;
    margin-block: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 1rem;
    min-width: 30rem;
    max-width: 35rem;
  }

  #story_description_security_desktop {
    margin: 0;
    margin-block: auto;
    color: black;
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 1rem;
    padding: 0.4rem;
    min-width: 30rem;
    max-width: 35rem;
  }

  /* Cat ↓ -------------------------------------- */
  #sprechblase_kopf_div {
    position: relative;
    top: -20px;
    left: -175px;
    z-index: 10;
  }

  #sprechblase_kopf {
    width: 9rem;
    transform: none;
    animation-name: sprechblase_kopf;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  #sprechblase_schwanz_div {
    position: relative;
    top: 30px;
    left: -200px;
    z-index: 10;
  }

  #sprechblase_schwanz {
    position: relative;
    width: 5rem;
    z-index: 10;
  }

  #cat_div {
    position: relative;
    display: flex;
    justify-content: center;
    top: 110px;
    padding-left: 90px;
    z-index: 30;
    overflow: visible;
  }

  #cat {
    position: relative;
    width: 14rem;
    z-index: 30;
  }

  #cat_tail_div {
    position: relative;
    left: -205px;
    top: 170px;
    z-index: 20;
  }

  #cat_tail {
    position: relative;
    width: 5rem;
    z-index: 20;
    transform: rotate(320deg);
    transform-origin: 100% 100%;
    animation-name: tail_wiggle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  #cat_tail_reflection_div {
    position: relative;
    left: -292px;
    top: 360px;
    z-index: 50;
  }

  #cat_tail_reflection {
    position: relative;
    width: 6rem;
    z-index: 20;
    transform: rotate(320deg);
    transform-origin: 100% 0%;
    animation-name: tail_wiggle_reflection;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  /* Cat ↑ -------------------------------------- */

  #marmor {
    position: relative;
    width: 100%;
    transition: none;
    transform: none;
    z-index: 0;
    scale: 1;
    top: -80px;
  }

  #beginne_die_reise_text {
    margin-block: auto;
    font-size: 1.2rem;
  }

  #formular_section {
    position: relative;
    bottom: 80px;
  }

  #flexbox_header {
    position: relative;
    display: flex;
    gap: 0rem;
    justify-content: space-evenly;
    overflow: hidden;
  }

  #hintergrundvideo {
    position: absolute;
    bottom: 0;
    width: 100%;
    scale: 1;
  }

  .story_description_bottom {
    padding-inline: 0.8rem;
    padding-block: 0.5rem;
    margin-block: 1.5rem;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 30rem;
    max-width: 28rem;
  }

  .story_description_side {
    margin: 0;
    margin-block: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 1rem;
    padding: 0.4rem;
    min-width: 30rem;
    max-width: 35rem;
  }

  .flexbox_story {
    position: relative;
    flex-direction: row;
    padding-inline: 5rem;
    margin-block: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  #flexbox_story_security {
    position: relative;
    flex-direction: row;
    display: flex;
    gap: 10rem;
    padding-inline: 30rem;
    margin-block: 2rem;
    justify-content: center;
  }

  .story_image {
    margin: 0;
    margin-block: auto;
    object-fit: contain;
    height: fit-content;
    width: 100%;
    max-width: 24rem;
    box-shadow: 0.5rem 0.5rem 2rem;
  }

  h1 {
    border-width: 0.1vw;
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .textbox {
    width: 35%;
  }

  #header_text {
    margin: 0;
    font-size: 1rem;
  }

  #header_text_div {
    font-size: 0.8rem;
    min-width: 22rem;
    padding: 0.8rem;
    margin-block: 1rem;
    margin-left: 0rem;
  }

  #beginne_die_reise_div {
    font-size: 1.4rem;
  }

  #titel {
    font-weight: 500;
    font-size: 3rem;
    color: black;
  }

  #titelbild {
    width: 16rem;
    top: 55px;
    right: 35px;
    animation-name: titelbild_animation_desktop;
    animation-duration: 1.2s;
  }

  .flexbox_story_special {
    position: relative;
    flex-direction: row;
    display: flex;
    gap: 4rem;
    padding-inline: 1rem;
    margin-block: 2rem;
    justify-content: center;
  }

  #federer {
    width: 100%;
    max-width: 25rem;
  }

  #hollywood_foto {
    width: 100%;
    max-width: 22rem;
  }

  #zeichnung {
    margin: 0;
    margin-block: auto;
    width: 100%;
    max-width: 24rem;
    box-shadow: 0.5rem 0.5rem 2rem;
  }

  /* Handy-Styling für Swisscom-Textbox */
  #textbox_swisscom {
    width: 40%;
  }

  #swisscom_image_dejan {
    width: 100%;
    max-width: 16rem;
    box-shadow: 0.5rem 0.5rem 2rem;
  }

  #swisscom_image_jozef {
    width: 100%;
    max-width: 13rem;
    box-shadow: 0.5rem 0.5rem 2rem;
  }

  .musicVideo {
    width: 100%;
    max-width: 26rem;
  }

  #greenButton_anker {
    left: 360px;
    top: -30px;
    animation: greenButton_fadein_992px_desktop 2.4s 1, scale 1.5s infinite 2.7s linear;
  }

  #greenButton {
    width: 4rem;
    bottom: 0;
  }

  #unterer_container {
    position: relative;
    padding-top: 0;
  }

  /* ◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ► */

  #kontaktFormular {
    text-align: center;
    font-size: 3vw;
  }

  #formular {
    padding-inline: 25%;
    font-size: 1rem;
  }

  select {
    font-size: 1rem;
  }

  .Eingabefelder {
    border-color: rgb(0, 23, 85);
    border-width: 3px;
  }

  #anrede {
    width: 48.5%;
  }

  #textArea {
    width: 30rem;
  }

  input[type=text] {
    font-size: 1rem;
  }

  input[type=email] {
    font-size: 1rem;
  }

  textarea {
    font-size: 1rem;
  }

  #flexbox_knopf {
    display: block;
  }

  #absendeKnopf:hover {
    scale: 1.2;
    cursor: pointer;
  }
}

/* ▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌▌ */

@media (min-width: 1200px) {

  /* Cat ↓ -------------------------------------- */
  #sprechblase_kopf_div {
    position: relative;
    top: -20px;
    left: -195px;
    z-index: 10;
  }

  #sprechblase_kopf {
    width: 10rem;
    transform: none;
    animation-name: sprechblase_kopf;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  #sprechblase_schwanz_div {
    position: relative;
    top: 30px;
    left: -220px;
    z-index: 10;
  }

  #sprechblase_schwanz {
    position: relative;
    width: 5rem;
    z-index: 10;
  }

  #cat_div {
    position: relative;
    display: flex;
    justify-content: center;
    top: 70px;
    padding-left: 90px;
    z-index: 30;
    overflow: visible;
  }

  #cat {
    position: relative;
    width: 16rem;
    z-index: 30;
  }

  #cat_tail_div {
    position: relative;
    left: -233px;
    top: 200px;
    z-index: 20;
  }

  #cat_tail {
    position: relative;
    width: 5.5rem;
    z-index: 20;
    transform: rotate(320deg);
    transform-origin: 100% 100%;
    animation-name: tail_wiggle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  #cat_tail_reflection_div {
    position: relative;
    left: -332px;
    top: 410px;
    z-index: 50;
  }

  #cat_tail_reflection {
    position: relative;
    width: 7rem;
    z-index: 20;
    transform: rotate(320deg);
    transform-origin: 100% 0%;
    animation-name: tail_wiggle_reflection;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  /* Cat ↑ -------------------------------------- */

  #marmor {
    position: relative;
    width: 100%;
    transition: none;
    transform: none;
    z-index: 0;
    scale: 1;
    top: -150px;
  }

  #flexbox_story_swisscom {
    position: relative;
    flex-direction: row;
    display: flex;
    gap: 4rem;
    padding-inline: 3rem;
    justify-content: center;
  }

  #header_text {
    margin: 0;
    font-size: 1.3rem;
  }

  #formular_section {
    position: relative;
    bottom: 150px;
  }

  #flexbox_header {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10rem;
    overflow: hidden;
  }

  #hintergrundvideo {
    position: absolute;
    bottom: 0;
    width: 100%;
    scale: 1;
  }

  .story_description_bottom {
    font-size: 1.1rem;
  }

  .story_description_side {
    margin: 0;
    margin-block: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 1.1rem;
    padding: 0.4rem;
    min-width: 25rem;
    max-width: 28rem;
  }

  .flexbox_story {
    position: relative;
    flex-direction: row;
    padding-inline: 5rem;
    margin-block: 2rem;
    display: flex;
    justify-content: center;
    gap: 5rem;
  }

  #flexbox_story_security {
    position: relative;
    flex-direction: row;
    display: flex;
    gap: 8rem;
    padding-inline: 30rem;
    margin-block: 2rem;
    justify-content: center;
  }

  .story_image {
    width: 100%;
    max-width: 28rem;
  }

  h1 {
    border-width: 0.1vw;
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .textbox {
    width: 35%;
  }

  #header_text_div {
    font-size: 0.8rem;
    min-width: 36rem;
    padding: 0.8rem;
    margin-block: 3.5rem;
    margin-left: 0rem;
  }

  #beginne_die_reise_div {
    font-size: 1.4rem;
  }

  #beginne_die_reise_text {
    margin-block: auto;
    font-size: 1.4rem;
  }

  #titel {
    font-weight: 500;
    font-size: 3rem;
    color: black;
  }

  #titelbild {
    width: 21rem;
    top: 70px;
    right: 35px;
    animation-name: titelbild_animation_desktop;
    animation-duration: 1.2s;
  }

  .flexbox_story_special {
    gap: 4rem;
  }

  #federer {
    width: 100%;
    max-width: 28rem;
  }

  #hollywood_foto {
    max-width: 26rem;
  }

  #zeichnung {
    max-width: 28rem;
  }

  /* Handy-Styling für Swisscom-Textbox */
  #textbox_swisscom {
    width: 40%;
  }

  #story_description_swisscom_desktop {
    padding-inline: 0.4rem;
    padding-block: 0.5rem;
    margin-block: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 1.1rem;
    width: 30rem;
  }

  #story_description_security_desktop {
    margin: 0;
    margin-block: auto;
    color: black;
    background-color: rgba(250, 235, 215, 0.741);
    border-style: solid;
    border-color: silver;
    border-width: 2px;
    border-radius: 10px;
    font-size: 1.1rem;
    padding: 0.4rem;
    min-width: 25rem;
    max-width: 28rem;
  }

  #story_description_swisscom_desktop:hover {
    border-color: blue;
    background-color: white;
    transition: 0.2s;
  }

  #swisscom_image_dejan {
    width: 100%;
    max-width: 20rem;
  }

  #swisscom_image_jozef {
    width: 100%;
    max-width: 16rem;
  }

  .musicVideo {
    width: 100%;
    max-width: 30rem;
    margin: 0;
  }

  #greenButton_anker {
    left: 390px;
    top: -50px;
    animation: greenButton_fadein_1200px_desktop 2.4s 1, scale 1.5s infinite 2.7s linear;
  }

  #greenButton {
    width: 5rem;
  }

  #unterer_container {
    position: relative;
    padding-top: 0;
  }

  /* ◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ►◄ ► */

  #kontaktFormular {
    text-align: center;
    font-size: 3vw;
  }

  #formular {
    padding-inline: 32%;
    font-size: 1rem;
  }

  select {
    font-size: 1rem;
  }

  .Eingabefelder {
    border-color: rgb(0, 23, 85);
    border-width: 3px;
  }

  #anrede {
    width: 48.5%;
  }

  #textArea {
    width: 30rem;
  }

  input[type=text] {
    font-size: 1rem;
  }

  input[type=email] {
    font-size: 1rem;
  }

  textarea {
    font-size: 1rem;
  }

  #flexbox_knopf {
    display: block;
  }
}

@media (min-width: 1800px) {

  #marmor {
    position: relative;
    width: 100%;
    transition: none;
    transform: none;
    z-index: 0;
    scale: 1;
    top: -200px;
  }

  #formular_section {
    position: relative;
    bottom: 250px;
  }
}