/* Allgemeines Design */
body {
    background-color: orange;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Alles untereinander */
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
    width: 100vw; /* Stellt sicher, dass die Breite sich nicht ausdehnt */
    
}

.Germanflag img{
  position: absolute;
  right: 80px;
  top: 10px;
  width: 25px;
  height: 18px ;
}

.Englandflag img{
  position: absolute;
  top: 10px;
  right: 50px;
  width: 25px;
  height: 18px;
}


.Russianflag img{
  position: absolute;
  top: 10px;
  right: 20px;
  width: 25px;
  height: 18px;
}







header {
    
    color: white;
    width: 100%;
    text-align: center;
    padding: 20px;
}






/* Menü auf der linken Seite */
.sidebar {
    width: 180px;
    background: #333;
    color: rgb(255, 255, 255);
    padding: 20px;
    height: 100vh;
    position: fixed;
}




/* Menü-Links */
.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 10px 0;
}

.sidebar a {
    color: white;
    text-decoration: none;
}


.button-3 {
    background-color: #2ea44f;
    color: black !important;
    border: 1px solid rgba(27, 31, 35, .15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
    box-sizing: border-box;
    font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 6px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
   }
  


.language-switch {
  position: absolute;
  top: 10px;
  right: 10px;
}

.language-switch a {
  margin-left: 6px;
}

.language-switch img {
  width: 24px;
  height: 24px;
}


 

/* Neuer Container für den gesamten rechten Bereich */
.right-content {
    margin-left: 180px; /* Platz für Sidebar */
    margin-right: auto; /* Zentriert den gesamten rechten Bereich */
    width: calc(100% - 180px);
    
}

/* Hero bleibt jetzt innerhalb des zentrierten Containers */
.hero {
    background-image: url('mataji vs jesus.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 280px;
    width: 100%; /* Bezieht sich jetzt auf .right-content */
    margin: 0 auto; /* Innerhalb des Containers zentriert */
}

.Überschrift {

  text-align: center;
}

/* Main bleibt normal, aber ohne margin */
.main {
    text-align: left;
    margin-left: 30px;
    margin-right: auto;
    width: 95%; /* Volle Breite im Container */
    /* Keine margin mehr nötig! */
    padding: 20px; /* Stattdessen Padding für Innenabstand */
    box-sizing: border-box;
}


/* Bei kleinen Bildschirmen: */
@media (max-width: 768px) {
    .main {
        margin-left: 20px; /* Weniger Abstand bei Handy */
        margin-right: 20px;
    }
}




@media (max-width: 768px) {

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .right-content {
        margin-left: 0;
        width: 100%;
    }

    .hero {
        height: 180px;
        background-size: cover;
    }

    .main {
        margin-left: 10px;
        margin-right: 10px;
        width: auto;
    }
}