body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: white;
    overflow: hidden; 
    height: 100vh;
}

.content-to-hide-wrapper{
    height: 100%; 
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
}

.container {
    width: 80vw;
    height: 75vh;
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px; /* Runde Ecken */
    flex-direction: row; /* Container nebeneinander */
    margin-top: 60px;
    font-size: 15px;
    -webkit-box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
    box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
}

.inner-container1 {
    width: 50%; /* Die beiden inneren Container teilen sich die Breite des äußeren Containers */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px 0px 0px 15px; /* Runde Ecken */
    flex-direction: column;
    display: flex;
    align-items: center; /* Vertikales Zentrieren */
    justify-content: center; 
}

.inner-container2 {
    width: 50%; /* Die beiden inneren Container teilen sich die Breite des äußeren Containers */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0px 15px 15px 0px; /* Runde Ecken */
    flex-direction: column;
    display: flex;
    align-items: center; /* Vertikales Zentrieren */
    justify-content: center; 
}

.flyer {
    width: 80%;          /* 80% der Breite des Containers */
    max-height: 90%;    /* Maximal 100% der Höhe des Containers */
    object-fit: contain; /* Das Bild wird innerhalb des Containers behalten, ohne seine Verhältnisse zu ändern */
    border-radius: 15px; /* Runde Ecken */
}


.subheader {
    font-size: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 0;
}
.subheader2 {
    font-size: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 0;
}

.info-table { 
    margin-left: auto;
    margin-right: auto;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.content {
    width: 40vw;
    height: 30vh;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px; /* Runde Ecken */
    text-align: center;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-shadow: 0px 0px 14px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 14px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 14px 0px rgba(255,255,255,1);
}

.content h1{
    margin-bottom: 20px;
}

.content p{
    margin-left: 10px;
    margin-right: 10px;
}

  .button4-1 {
    background-color: transparent;
    border: 2px solid #00f3ff;
    color: #00f3ff;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.5s;
    animation: pulse 3s infinite;
    margin-top: 35px;
  }
  
  .button4-1:hover {
    background-color: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px #00f3ff, 0 0 40px #00f3ff, 0 0 60px #00f3ff;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 5px #00f3ff; }
    50% { box-shadow: 0 0 20px #00f3ff, 0 0 30px #00f3ff; }
    100% { box-shadow: 0 0 5px #00f3ff; }
  }
    
  @media screen and (max-width: 768px) {
    .container {
        width: 85vw; /* Setze die Breite für Geräte mit einer maximalen Breite von 600px auf 70% der Bildschirmbreite */
        height: 85vh; /* Setze die Höhe für Geräte mit einer maximalen Breite von 600px auf 70% der Bildschirmhöhe */
        flex-direction: column; /* Container übereinander */
        margin-top: 0px;
        overflow-y: auto;
        align-items: flex-start;
    }
    button{
        margin-bottom: 50px;
    }
    .subheader{
        font-size: 40px;
      	display: none;
    }
    .subheader2{
        font-size: 20px;
        margin-top: 0px;
        margin-bottom: 10px;
      	display: none;
    }
    .content{
        width: 80vw;
        height: 30vh;
    }
    .info-table{
        margin-left: 15px;
    }
    .button4-1{
        margin-top: 20px;
    }
    .inner-container1{
        width: 100%;
        border-radius: 15px 15px 0px 0px; /* Runde Ecken */
        height: 60%;
        overflow: hidden;
    }
    .inner-container2{
        width: 100%;
        border-radius: 0px 0px 15px 15px; /* Runde Ecken */
        justify-content: flex-start;
        height: 40%;
        overflow: hidden;
    }  
    .flyer {
        width: 95%;         /* 90% der Breite des Containers */
        max-height: 95%;    /* Hier können Sie experimentieren. Z.B. 45% der Höhe des Containers */
        object-fit: contain;
        border-radius: 15px;
    }
    .subheader{
        font-size: 40px;
        margin-top: 20px;
        visibility: collapse;
    }
    /*.subheader2{
        visibility: collapse;
    }*/
    /*.info-table{
        visibility: collapse;
    }*/
    .button4-1{
        margin-bottom: 50px;
    }
}

