
body {
    background-color: #111;
    color: #eee;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    display:block;
    position: relative;
}

a {
    text-decoration: none;
    color: aquamarine;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

a:hover {
    opacity: 0.8;
}

h1, h2, h3 {
    color: aquamarine;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

div {
    white-space: normal;
}

#wrapper {
    display: flex;
    border: 1px solid black;
    flex-direction: row;
    margin: 20px auto auto auto;
    overflow:hidden
}

div.left{
    float:left;
    width:50%;
    text-align: right;
}

div.right{
    float:right;
    width:50%;
    text-align: left;
}

row {
    width: 300px;
    border: 15px solid green;
    padding: 50px;
    margin: 20px;
}

table {
    margin-left: 10%;
    margin-right: 10%;
    text-align: justify;
    width:90%;
}

p {
    text-align: justify;
    margin: 2rem 0;
}

main {
    max-width: 1024px;
    padding: 2rem;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto
}

.overlay {
    text-align: center;
    text-align-all: center;
    vertical-align: middle;
}

.popupClass {
    background: black;
    margin-top: 10%;
}


#overlay {
    position: fixed;
    display: block;
    width: 90%;
    height: 90%;
    top: 0;
    left: 5%;
    right: 5%;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
    overflow: auto;
}

#popup {
    position: fixed;
    left: 33%;
    right: 33%;
    width: 30%;
    height: auto;
    padding: 1%;
    z-index: 3;
}


.button {
    background-color: green;
    -webkit-border-radius: 10px;
    border-radius: 3px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: 30px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
}

.buttonReset
{
    background-color: blue;
    -webkit-border-radius: 10px;
    border-radius: 3px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: 30px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
}

.button {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
    display: none;
}

/* Style navigation menu links */
.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Style the active link (or home/logo) */
.active {
    background-color: #04AA6D;
    color: white;
}

.impress {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;

    margin-top: 4rem;
    padding: 2rem;
}

@media screen and (min-width: 768px) {
    .impress {
        flex-direction: row;
        gap: 4rem;
    }
}

h4 {

}


.image-background {
    position: relative;
    display: inline-block;
  }
  
  .image-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('resources/bomSquadMuunTrooper.jpg');
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
  }
  
  .image-background p {
    /* Hier kannst du weitere Formatierungen für den Text hinzufügen */
  }


.paging {
    text-align: center;
    margin-top: 20px;
}
.paging a {
    padding: 5px 10px;
    margin: 0 5px;
    font-size: 14px;
}
