* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.mainrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

h1 {
    font-size: 4rem;
    line-height: 5rem;
}

/* 
        p {
            font-size: 3rem;
        } */

img {
    width: 100%;
    transform: rotate(360deg);

}


p {
    animation-duration: 1s;
    animation-name: slidein;
}

button {
    animation: animate 1.2s linear infinite;
}

img {
    filter: brightness(150%);
}

img {
    filter: contrast(200%);
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    75% {
        font-size: 300%;
        margin-left: 25%;
        width: 150%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}


/* button animate */
@keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}





@media only screen and (max-width:768px) {
    .content {
        margin-top: 5rem;
        display: flex;
    }

    /* p {
                font-size: 2rem;
            } */
}