.holder {
    width: 100%;
    height: 100vh;
    padding-top: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*border: 2px solid yellow;*/
}

h1 {
    margin-bottom: 20px;
}

p {
    width: 700px;
    text-align: center;
    margin-bottom: 20px;
    
}



.btn {
    width: 205px;
    height: 50px;
    transform: skewX(-15deg);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #EA530F;
    margin: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-a {
    display: inline-block;
    padding: 12px 31px 12px 31px;
    font-size: 15px;
    text-decoration: none;
    color: white;
    font-weight: 400;
    /*border: 1px solid black;*/
}

.btn-a span {
    display: inline-block;
    transform: skewX(15deg); /* Vraća tekst u normalan položaj */

}


.btn:hover {
    transform: skewX(-15deg) scale(1.05);
    box-shadow: rgba(12, 1, 8, 0.4) 5px 5px, rgba(2, 1, 1, 0.3) 10px 10px, rgba(0, 0, 0, 0.2) 15px 15px, rgba(0, 0, 0, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}