body {
    font-family: 'Open Sans', sans-serif;
    background-color: antiquewhite;
    height: 100vh;
    margin-top: 150px; /* Platz für den fixierten Header */
    margin-right: 40px;
    margin-left: 40px;
}

.header_eingebunden {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Höhe des Headers anpassen */
    z-index: 10; /* hoher z-index für den Header */
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px; /* Platz nach dem Header */
    padding: 10px;
    margin-bottom: 100px;
}

.tile {
    background-color: #4CAF50;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: white;
    padding: 20px;
    margin: 10px;
    flex: 1 1 calc(33.333% - 40px); /* Adjust width for margins */
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, z-index 0.3s;
    box-sizing: border-box;
    position: relative; /* Positionierung für z-index */
    z-index: 11; /* Standard z-index */
}

.tile:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .tile {
        flex: 1 1 calc(50% - 40px); /* 2 tiles per row on medium screens */
    }
}

@media (max-width: 480px) {
    .tile {
        flex: 1 1 100%; /* 1 tile per row on small screens */
    }
    .container {
        margin-bottom: 0px;
    }
}


.back-button {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background-color: #0056b3;
}


.Perlenkinder_logo{
    height: 200px;
    border-radius: 50px;
    cursor: pointer;
}

.logo_hamburger {
    margin: 50px;
    margin-top: 50px;
}

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



@media (max-width: 480px) {
    .Perlenkinder_logo{
        height: 60px;
        border-radius: 50px;
        cursor: pointer;
    }
}
