/*PC*/

@media only screen and (min-width: 1001px){
    .mainText{
        color: #091242;
        width: 60%;
        margin-left: 20%;
        text-align: center;
        margin-top: 220px;
    }

    .headerDeck{
        width: 100%;
        height: 10vh;
        background-color: #091242;
        color: white;
        display: flex;
        align-items: center;
    }
    
    .headingKawelke{
        margin-left: 5%;
    }
    
    .mainDeck{
        width: 100%;
        height: 40vh;
    }
    
    .gelbDeck{
        position: absolute;
        top: 180px;
        left: 100px;
        transition: transform 0.3s ease;
    }
    
    .textGelb{
        position: absolute;
        top: 180px;
        left: 490px;
        color: white;
    }
    
    .orangeDeck{
        position: absolute;
        top: 670px;
        right: 100px;
        transition: transform 0.3s ease;
    }
    
    .textOrange{
        position: absolute;
        top: 700px;
        right: 470px;
        color: white;
    }
    
    .orangeDeck:hover {
        transform: scale(1.1); /* Vergrößert das Element um 20% */
      }
    
      .gelbDeck:hover {
        transform: scale(1.1); /* Vergrößert das Element um 20% */
      }
    
    
    .footerDeck{
        width: 100%;
        height: 650px;
        background-color: #091242;
        color: white;
    }
    
    .footerDeckLeft{
        width: 45%;
        float: left;
        margin-left: 5%;
        margin-top: 70px;
    }
    
    .footerDeckRight{
        width: 45%;
        float: left;
        margin-left: 5%;
        margin-top: 70px;
    }
    
    .footerDeckText{
        font-size: 16px;
        font-family: var(--font-family-1);
        font-weight: 300;
        line-height: 250%;
    }
    
    .footerLineDeck{
        width: 100%;
        height: 60px;
        background-color: #C1C4D0;
        color: #666C89;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
}

/*mobile */

@media only screen and (max-width: 1000px){
    .mainText{
        color: #091242;
        width: 80%;
        margin-left: 10%;
        text-align: center;
        margin-top: 200px;
    }

    .headerDeck{
        width: 100%;
        height: 90px;
        background-color: #091242;
        color: white;
        display: flex;
        align-items: center;
    }
    
    .headingKawelke{
        margin-left: 5%;
    }
    
    .mainDeck{
        width: 100%;
        height: 350px;
    }

    .gelbDeck{
        float: left;
        margin-top: 15%;
        width: 100%;
    }

    .gelbDeckImg{
        width: 90%;
        margin-left: 5%;
    }
    
    .textGelb{
        display: none;
    }
    
    .orangeDeck{
        float: left;
        margin-top: 30vh;
        width: 100%;
    }

    .orangeDeckImg{
        width: 90%;
        margin-left: 5%;
    }
    
    .textOrange{
        display: none;
    }

    .footerDeck{
        width: 100%;
        height: 470px;
        background-color: #091242;
        color: white;
    }
    
    .footerDeckLeft{
        width: 90%;
        float: left;
        margin-left: 5%;
        margin-top: 70px;
    }
    
    .footerDeckRight{
        width: 90%;
        float: left;
        margin-left: 5%;
        margin-top: 50px;
    }
    
    .footerDeckText{
        font-size: 14px;
        font-family: var(--font-family-1);
        font-weight: 300;
        line-height: 180%;
    }
    
    .footerLineDeck{
        width: 100%;
        height: 60px;
        background-color: #C1C4D0;
        color: #666C89;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
    }

    .desktop{
        display: none;
    }


}