* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: black;
    width: 100%;
    height: 100em;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    box-sizing: border-box;

}
.search {
    background-position: center;
    display: flex;
    background-color: rgba(85, 5, 5, 0.842);
    width: 72.5%;
    height: 4vh;
    margin: 1em;
    border-radius: 0.3em;
    
    box-shadow: 1em rgba(160, 5, 5, 0.507);

}
.lupa {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 1em; 
  font-style: normal;
  color: #885959;
  -webkit-text-stroke: #020202 0.01px;


}
.haupt-columns {
    display: flex;
    width: 100%;
    height: 65vh;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 0;
   
}
.image-block {
   width: 20%;
   height: auto;
   margin: 1em;
}
img {
    width: auto;
    height: auto;
}
.text-block {
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width:50%;
    height: 100%;
    color: #ffffff;
    gap: 1em;
    box-sizing: border-box;
    
}
.block-title {
    width: 100%;
    height: 25%;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.block-text-description {
    display: flex;
    justify-content: left;
    justify-content: flex-start;
    gap: 3em;
    text-align: left;
    
   
}

.qmi {
    display: flex;
    justify-content: left;
    text-align: left;
    font-size: 14px;
    left: -5px;

}

.block-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: crimson;
    width: 60%;
    height: 3vh;
    border-radius: 1em;
    
    

}
.block-button:hover {
    background-color: rgb(82, 3, 19);
}

.a11 {
    
    background-size: auto;
    justify-content: center;
}
.description {
    display: flex;
    width: 50%;
    height: 30%;
    margin: 0.5em;
    border: 0.1em solid rgb(29, 7, 7);
    background-color: rgb(20, 10, 10);
    border-radius: 0.5em;
    box-shadow: 3em rebeccapurple;
    overflow: hidden;

}
a {
    margin: 0.3em;
}
h3 {
    font-family: cursive;
    font-size: 14px;
}

.haupt-columns1 {
    display: flex;
    width: 100%;
    height: 65vh;
    box-sizing: border-box;
    
  
} 
.image-block1 {
   width: 20%;
   height: auto;
   margin: 1em;
}
img {
    width: 100%;
    height: auto;
    border-radius: 0.5em;
}
.text-block1-animation {
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width:50%;
    height: 100%;
    color: #ffffff;
    gap: 1em;
    
}
.block-title1 {
    width: 100%;
    height: 25%;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.block-text-description1 {
    display: flex;
    justify-content: left;
    justify-content: flex-start;
    gap: 3em;
   
}

.block-button1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: crimson;
    width: 60%;
    height: 3vh;
    border-radius: 1em;
    
    

}
.block-button1:hover {
    background-color: rgb(86, 1, 18);
}
.a12 {
    
    background-size: auto;
    justify-content: center;
    
}



.haupt-columns2 {
    display: flex;
    width: 100%;
    height: 65vh;
    box-sizing: border-box;
   
}
.image-block2 {
   width: 20%;
   height: auto;
   margin: 1em;
}
.text-block2-animation {
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width:50%;
    height: 100%;
    color: #ffffff;
    gap: 1em;
    
}
.block-title2 {
    width: 100%;
    height: 25%;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.block-text-description2 {
    display: flex;
    justify-content: left;
    justify-content: flex-start;
    gap: 3em;
   
}

.block-button2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: crimson;
    width: 60%;
    height: 3vh;
    border-radius: 1em;
    
    

}

.block-button2:hover {
    background-color: rgb(86, 1, 18);
}

.blockShow {
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.notification {
   

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 5%;
    position: fixed;
   
    top: 80vh;
    
    

    background-color: rgb(160, 93, 176);
    color: #000000;
    font-size: 23px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    padding: 3px 68px;
    border-radius: 20px;
    z-index: 99999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5 ease;
    pointer-events: none;

}



.notification.show {
    opacity: 1;
    transform: translateY(0);
}


@media only screen and (max-width:415px) {
    body { 
        background-color: black;
        width: 100%;
        height: 100em;
    }


    main {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    .search {
        width: 90%;
    }
    
    .haupt-columns {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        height: 45vh;
        box-sizing: border-box;
        
    } 
    .image-block {
        display: flex;
        flex-direction: column;
        justify-content: left;
        width: 50%;
        height: 85%;
        
     }
     img {
        width: 100%;
        height: auto;
        border-radius: 0.5em;
    }
     .text-block {
        float: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width:40%;
        height: 100%;
        color: #ffffff;
        gap: 1em;
        
    }
    .block-title {
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 80%;
        height: 40%;
        color: aliceblue;
        display: flex;
        
    }
    .block-button {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: crimson;
        width: 95%;
        height: 1.8vh;
        border-radius: 0.8em;
    }
    h2  {
        font-size: 12px;
    }

    a {
        font-size: 0.5em;
    }
    
    h3 {
       font-size: 0.5em;
       font-style: normal;
    }

    .qmi-block {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .qmi {
        display: flex;
       

        font-size: 10px;
    }

    .block-text-description {
        
        width: 35%;
    }
    .qmii {
        font-size: 13px;
    }
    .aaa {
        font-size: 8px;
    }
    
    .haupt-columns1 {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        height: 50vh;
        box-sizing: border-box;
        
    } 
    .image-block1 {
        display: flex;
        flex-direction: column;
        justify-content: left;
        width: 50%;
        height: 85%;
        
     }
     .text-block1 {
        float: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width:40%;
        height: 100%;
        color: #ffffff;
        gap: 1em;
        
    }
    .block-title1 {
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 80%;
        height: 40%;
        color: aliceblue;
        display: flex;
        
    }
    .block-button1 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: crimson;
        width: 95%;
        height: 1.8vh;
        border-radius: 0.8em;
    }
    .haupt-columns2 {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        height: 55vh;
        box-sizing: border-box;
        
    } 
    .image-block2 {
        display: flex;
        flex-direction: column;
        justify-content: left;
        width: 50%;
        height: 85%;
        
     }
     .text-block2 {
        float: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width:40%;
        height: 100%;
        color: #ffffff;
        gap: 1em;
        
    }
    .block-title2 {
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 80%;
        height: 40%;
        color: aliceblue;
        display: flex;
        
    }
    .block-button2 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: crimson;
        width: 95%;
        height: 1.8vh;
        border-radius: 0.8em;
    }
    .notification {
        height: 3%;
        font-size: 13px;
    }


@media only screen and (min-width:415px) and (max-width:1100px) {
    body { 
        background-color: black;
        width: 100%;
        height: 100em;
    }


    main {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    .search {
        width: 43%;
    }
    .haupt-columns {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 45%;
        height: 60vh;
        box-sizing: border-box;
        
    } 
    .image-block {
        display: flex;
        flex-direction: column;
        justify-content: left;
        width: 50%;
        height: 85%;
        
     }
     img {
        width: 100%;
        height: auto;
        border-radius: 0.5em;
    }
     .text-block {
        float: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width:40%;
        height: 100%;
        color: #ffffff;
        gap: 1em;
        
    }
    .block-title {
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 80%;
        height: 40%;
        color: aliceblue;
        display: flex;
        
    }
    .block-button {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: crimson;
        width: 95%;
        height: 1.8vh;
        border-radius: 0.8em;
    }
    h2  {
        font-size: 12px;
    }

    a {
        font-size: 0.5em;
    }
    
    h3 {
       font-size: 0.5em;
       font-style: normal;
    }
    .description {
        font-size: 15px;
    }
    .haupt-columns1 {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 45%;
        height: 60vh;
        box-sizing: border-box;
        
    } 
    .image-block1 {
        display: flex;
        flex-direction: column;
        justify-content: left;
        width: 50%;
        height: 85%;
        
     }
     .text-block1 {
        float: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width:40%;
        height: 100%;
        color: #ffffff;
        gap: 1em;
        
    }
    .block-title1 {
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 80%;
        height: 40%;
        color: aliceblue;
        display: flex;
        
    }
    .block-button1 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: crimson;
        width: 95%;
        height: 1.8vh;
        border-radius: 0.8em;
    }
    .haupt-columns2 {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 45%;
        height: 70vh;
        box-sizing: border-box;
        
    } 
    .image-block2 {
        display: flex;
        flex-direction: column;
        justify-content: left;
        width: 50%;
        height: 85%;
        
     }
     .text-block2 {
        float: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width:40%;
        height: 100%;
        color: #ffffff;
        gap: 1em;
        
    }
    .block-title2 {
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 80%;
        height: 40%;
        color: aliceblue;
        display: flex;
        
    }
    .block-button2 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: crimson;
        width: 95%;
        height: 1.8vh;
        border-radius: 0.8em;
    }
}


.text-block2-animation {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.element-show {
    opacity: 1;
}



}
