/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-attachment:fixed;
    background-image: url("wald3.jpg");
    background-color: rgb(204, 255, 204);
    background-repeat:no-repeat;
    background-size: cover;
    font-family: system-ui, -apple-system, -apple-system-font, 'Segoe UI', 'Roboto', sans-serif;
    font-size:25;
    color: #ffff;
    height:100vh;
    margin:0px;
    padding:0px;
    /* Padding to avoid the "unsafe" areas behind notches in the screen */
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-right, 0px);
    
}

.Inhalt{
    margin:40px 40px 0px;
    color: #ffff;
    font-weight: 500;
    padding-top: 25px;
    padding-bottom: 15px;   
}
/* Portrait layout (default) */
.app {
    text-align:center;
    font-size: 18px;
    
}
.ueber{
    background-image: url("ueber3.png");
    background-repeat:no-repeat;
    background-size: cover;
    text-align: center;
    border-radius: 40px;
    height: 100%;
    padding: 20px;
    margin-right: 40px;
    margin-left: 20px;
}


.app-header {
    background-color: rgb(0, 153, 51);
    padding-top: 15px;
    padding-bottom: 15px;    
}

.row {
    margin-bottom: 25px;
}

.Rechtstexte {
    position:fixed;
    bottom: 0;
    width: 100%;
    line-height: 1.5em;
    text-align: center;
    background: rgb(0, 153, 51);
    color: #fff;
}
img{
    max-width: 100%;
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
    }
}

@media (max-width: 770px) {
    .mobile{
      
        display: block;
    }
    .noMobile {
        
        display: none;
    }
    
}



@media (min-width: 771px) {
    .mobile{
        
        display: none;
        
    
    }
    .noMobile{
        display: block;
    }
}