/*allgemein*/
#heading{
    float: left;
    margin-top: 10vh;
    width: 90%;
    margin-left: 5%;
    margin-bottom: 5vh;
}

.text{
    width: 90%;
    margin-left: 5%;
    margin-bottom: 20px;
}

#buttonGallerie{
    margin-left: 5%;
    float: left;
    width: 290px;
    height: 56px;
    background-color: #155FE7;
    border-radius: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20vh;
}

#buttonGallerie:hover {
    transform: scale(1.1); /* Vergrößert den Button beim Hovern */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Fügt einen leichten Schatten hinzu */
}

#buttonGallerie:active {
    transform: scale(1.15); /* Vergrößert den Button noch ein wenig mehr beim Klicken */
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3); /* Reduziert den Schatten leicht */
}

#arrowGallerie{
    margin-left: 15px;
}


/*PC*/

@media only screen and (min-width: 1001px){
    #heading{
        margin-top: 15vh;
        margin-bottom: 10vh;
    }

    .text{
        margin-bottom: 5vh;
    }
}

/*mobile */

@media only screen and (max-width: 530px){
    .heroSection{
        width: 300px;
    }


    #buttonGallerie{
        width: 220px;
        height: 40px;
    }
}