*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

body{
    background: #ffffff;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container{
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content:space-around ;
}

.img-container{
    width: inherit;
    height: 200px;
    display: flex;
    justify-content: center;
    position: relative;
}

.tick-img{
    position: absolute;
    height: 200px;
    width: 200px;
    user-select: none;
    -webkit-user-select: none;
    animation: 2s blink linear infinite;
}

@keyframes blink {
    0%{
        transform: scale(0.8);
    }
    50%{
        transform: scale(1);
    }
    65%{
        transform: scale(0.8);
    }
    75%{
        transform: scale(1);
    }
    100%{
        transform: scale(0.8);
    }
}

.home-icon{
    fill: aliceblue;
}

.home-txt{
    font-weight: 700;
}

h1{
    text-align: center;
}

.btn-container
{
    width: inherit;
    height: auto;
    display: flex;
    justify-content: center;
}

.home-btn{
    background: #0228f9;
    color: aliceblue;
    outline: none;
    border: none;
    padding: 5px 10px;
    width: 100px;
    height: 35px;
    margin-top: 59px;
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.home-btn:hover{
    background: #33228b;
    cursor: pointer;
}