@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Leckerli+One&family=Poppins:wght@900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Leckerli One', cursive;
}
/* setting background image and giving it blur effect */
body{
    background-image: url(assets/bg.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 30px;
}
/* making start button */
p{
    background-color: #4E008A;
    border: 2px solid #4E008A;
    border-radius: 25px;
    width: 150px;
    height: 50px;
    text-align: center;
    cursor: pointer;
}

/* making the page responsive */

@media screen and (max-width: 500px) {

    img{
        margin-top: 40%;
        height: 300px;
        width: 300px;
    }
    p{
        width: 120px;
        height: 40px;
        font-size: 25px;
        /* margin-top: 70px; */
    }
}