main {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 50px 0;
    padding: 0 15px;
}

main h1 {
    margin-bottom: 25px;
     z-index: 2;
}

main p {
    margin-bottom: 15px;
     z-index: 2;
}

main a {
    padding: 10px 15px;
    border: none;
    background: rgb(0, 81, 255);
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: linear .3s;
     z-index: 2;
}

main a:hover {
    transform: scale(1.1);
    transition: linear .3s;
}

main img{
    width: 80%;
    max-width: 500px;
    animation: infinite rotate 2s linear;
    transform: rotate(0deg);
    z-index: 1;
}

@keyframes rotate {

    0%{
        transform: rotate(0deg);
    }

    25%{
         transform: rotate(-10deg);
    }

    75%{
        transform: rotate(10deg);
    }

    100%{
        transform: rotate(0deg);
    }

    /* from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    } */
}
