*{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.94),rgba(0,0,0,.94)), url(image/abg.png);
    background-position: center;
    background-size: cover;
}

.heading h1{
    color: #fff;
    font-size: 90px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 14px;
    text-align: center;
}

.data{
    margin-top: 10%;
    width: 100;
    height: 30%;
    /* border: 1px solid #fff; */
    display: flex;
    justify-content: space-between;
}

.data .datahi{
    width: 20%;
    color: #fff;
    background: grey;
    border-radius: 30px;
    margin-top: 4%;
    padding: 10px;
    font-size: 20px;
    margin-left: 20%;
}

.data .datahi span{
    color: red;
}

.data .datahi img{
    width: 50px;
    height: 50px;
    margin-left: 10%;
}

.data .datain{
    width: 20%;
    color: #fff;
    background: grey;
    border-radius: 30px;
    margin-top: 4%;
    padding: 10px;
    font-size: 20px;
    margin-right: 20%;
}


.data .datain span{
    color: red;
}

.data .datain img{
    width: 50px;
    height: 50px;
    margin-left: 22%;
}

.hm{
    padding: 10px 60px ;
    background: rgb(84, 84, 211);
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    outline: none;
    border: 0;
    margin-top: 10%;
    margin-left: 42%;
    transition: .6s linear;
}


@keyframes hf {
    0% {
        transform: rotate(30deg) scale(.4);
    }

    70% {
        transform: rotate(-30deg) scale(.6);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.hm:hover{
    color: violet;
    background: none;
    animation: hf 2s ease-out forwards;
  }