a.button-link {
    margin-top: 40px;
    font-size: 18px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 100;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(145deg, #a83232, #d93b3b);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

a.button-link:hover {
    background: linear-gradient(145deg, #d93b3b, #a83232);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

a.button-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

a.button-main {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    display: block;
    opacity: 0.7;
    transform: rotate(0deg);
}

a.button-main:hover{
    opacity: 1;
    animation: shake 0.3s infinite;
}

a.button-main img{
    width: 150px;
    height: auto;
}

@keyframes shake {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(2px, 2px);
    }

    50% {
        transform: translate(-2px, -2px);
    }

    75% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}
