#deckblatt.aussen{
    display: flex;
    flex-wrap: wrap;
   
}

#deckblatt .div1{
    position: relative;
    width: 49%;
    height: 1000px;
    background-color: rgb(182, 181, 181); 
    margin: 2px;
    display: flex;
    flex-direction: column;
    margin-left: -3%;
}
#deckblatt .div1 .unten2{
    position: relative;
    top: 86%;
    background: lavender;
    margin-top: 0.5%;
    height: 500px;
    float: left;
    height: auto;
    padding-left: 20%;
}
#deckblatt .div1 .unten2 img{
   
      padding: 1%;
    
}
#deckblatt .div2{
    width: 50%;
    height: 1000px;
    background-color: rgb(182, 181, 181); 
    margin: 2px;
    overflow: hidden;
}
#deckblatt .h1_1{
    position: relative;
    top: 12%;
    left: 21%;
    color: white;
    font-variant: small-caps;
    font-size: 40px;
}
#deckblatt .meinName{
    display: flex;
    color: #3e454f;
    font-size: 248%;
    font-family: arial, "lucida console", sans-serif;
    font-style: oblique;
    font-variant-caps: small-caps;
    margin-left: 30%;
}
#deckblatt .h1_3{
    position: relative;
    top: 19%;
    left: 4%;
    color:rgb(74, 78, 141);
    font-size: 30px;
    letter-spacing: 12px;
}
#deckblatt .h1_inhalt{
    position: relative;
    top: 7%; 
    left: 13%;
   
    font-size: 30px;
    letter-spacing: 12px;
}
.h3_1{
    position: relative;
    top: -5%;
    left: 10%;
    font-size: 14px;
    letter-spacing: 12px;
}
#deckblatt .foto{
    position: absolute;
    width: auto;
    height: auto;
    top: 4%;
    background-image: url(../images/saleh1.jpg);
    background-position: center;
    background-size: contain;
    box-shadow: 14px 14px 14px rgba(24, 25, 80, 0.5);
    left: -20%;
    overflow: hidden;
    left: 30%;
    min-width: 20%;
    min-height: 24%;
    background-repeat: no-repeat;
}
#deckblatt .hr_1{
    position: relative;
    top: -3%;
    width: 90%;
    color: rgb(109, 59, 59);
    height: 2px;
    background-color: #f5e8b3;
}
#deckblatt .tab_1 {
    position: relative;
    width: 95%;
    text-align: start;
    padding-left: 14%;
    font-size: 12px;
}
#deckblatt .tab_2{
    position: relative;
    text-align: start;
    padding-left: 20%;
    font-size: 8px;     
}
#deckblatt .div2{
   display: flex;
   flex-direction: column;   
   
}
#deckblatt .div2 .oben ,.unten{
    width: 98%; 
    height: 40%;   
    margin: 1%;
    
 }
 #deckblatt .div2 .unten{
    background-color: white;
    opacity: 0.9;
    padding: 3%;
    overflow: hidden;
 }
 #deckblatt .div2 .oben {
    background-image: url(../images/anwendungsentwicklung.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: inherit;
    background-blend-mode: color-dodge;

 }

 #deckblatt .div2 .bewer {
    text-align: center;
    width: 100%;
    height: 13%;
    background-color: rgb(196, 180, 180);
    position: relative;
    top: 90%;
    left: 0.5%;
    opacity: 0.7;
    z-index: 20;
 }

 @media only screen and (max-width: 900px) {
    #deckblatt .div1{
        width: 100%;
        height: 30%;
    }
    #deckblatt .div2{
        width: 100%;
        height: 30%;
        margin-left: -3%;
        overflow: hidden;
    }
    #deckblatt .div2 .oben {
        background-position:80%,right;
        background-size: 93%,20%;
        background-repeat: no-repeat,no-repeat;
        background-attachment: inherit;
        background-blend-mode: color-dodge;

     }
     #deckblatt .div2 .bewer {
         display: none;
     }
}

/* #region Cube */

#deckblatt .scene {
    width: 300px;
    position: relative;
    left: 36%;
    top: 31%;
    perspective: 800px;
  }
 
  .cube {
    width: 200px;
    height: 200px;
    position: absolute;
    transition: 4s;
    transform-style: preserve-3d;
    animation: spinCube 5s infinite alternate;
  }
  .cube__face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid black;
    line-height: 200px; /* Vertikal höhe oder Abstand von Oben und unten  */
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-align: center; /* Horizontal höhe oder Abstand von Oben und unten  */
  }
  .cube__face--front  { background: hsla(  0, 100%, 50%, 0.7); transform: rotateY(  0deg) translateZ(100px); }
  .cube__face--right  { background: hsla( 60, 100%, 50%, 0.7); transform: rotateY( 90deg) translateZ(100px); }
  .cube__face--back   { background: hsla(120, 100%, 50%, 0.7); transform: rotateY(180deg) translateZ(100px); }
  .cube__face--left   { background: hsla(180, 100%, 50%, 0.7); transform: rotateY(-90deg) translateZ(100px); }
  .cube__face--top    { background: hsla(240, 100%, 50%, 0.7); transform: rotateX( 90deg) translateZ(100px); }
  .cube__face--bottom { background: hsla(300, 100%, 50%, 0.7); transform: rotateX(-90deg) translateZ(100px); }
  
  .cube.is-spinning {
    animation: spinCube 5s infinite alternate;
  }
  
  @keyframes spinCube {
      0% { transform: translateZ(-100px) rotateX(  0deg) rotateY(  0deg); }
    100% { transform: translateZ(-100px) rotateX(360deg) rotateY(360deg); }
  }

/* #endregion  */