#landing-page-header {
    justify-content: center;
    text-align: center;
    margin: 3rem auto;
}


#landing-page-headline {
    text-align: center;
    justify-content: center;
    padding: 1rem;
    font-weight: 900;
    margin: 0rem auto;
}

#landing-page-headline img {
    height: 150px;
    width: 150px;
}

#landing-page-logout-btn button {
  background: #fff;
  padding: 0.5rem 1.5rem;
  border: 1px solid #000;
  border-radius: 10px;
  position: absolute;
  top: 0px;
  right: 20px;
}

#landing-page-logout-btn button:hover {
    background: var(--button-hover-bg);
    cursor: pointer;
}

#landing-page-modules {
    /* margin: 1rem auto;
    display: grid;
    grid-template-columns: 
    repeat(auto-fit,minmax(250px, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem; */
     display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}



#landing-page-modules div {
     background-color: #007bff;
    color: white;
    margin: 10px;
    padding: 20px;
    flex: 1 1 calc(30% - 20px); /* 3 Container pro Reihe, mit Flexibilität */
    max-width: calc(30% - 20px);
    text-align: center;
}

#landing-page-modules .card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background-image: red;
    word-break: break-word;
    background: var(--dashboard-card-bg);
}
/* Responsives Design */
@media (max-width: 768px) {
    #landing-page-modules div{
        flex: 1 1 calc(45% - 20px); /* 2 Container pro Reihe */
        max-width: calc(45% - 20px);
    }
}

@media (max-width: 480px) {
    #landing-page-modules div {
        flex: 1 1 calc(100% - 20px); /* 1 Container pro Reihe */
        max-width: calc(100% - 20px);
    }
}

#landing-page-modules .card:hover {
    cursor: pointer;
    background: var(--dashboard-card-hover-bg);
}

#landing-page-informationen { 
    grid-area: informationen;
    margin: 0px auto;
}

#landing-page-footer-modules {
    margin: 1rem auto;
    display: grid;
    grid-template-columns: 
    repeat(auto-fit,minmax(200px, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem;
}

#landing-page-footer-modules .card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background-image: red;
    word-break: break-word;
}

#landing-page-footer-modules .card:hover {
    cursor: pointer;
    background: var(--card-hover-bg);
}

.landing-page-headline {
    margin-left: 1.5rem;
    font-weight: 500;
}

#module-iframe-content,
.module-page {
    margin: 0px;
    padding: 0px;
    background: red;
  } 

