@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,500&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


.Navbar{
    background-color: #272727;
    height: 8vh;
    font-family: 'Baloo Bhai 2', cursive;
}

a{
    text-decoration: none;
    color: whitesmoke;
    font-size: 20px ;
}

ul{
    display: flex;
    justify-content: left;
    align-items: center;
    list-style-type: none;
}

li{
    padding: 10px 20px;
}

.Landing_page{
    background-color: #fff;
    background-image: url(notes_bg.jpg);
    background-size: 100vh;
    background-size: 100vw;
    background-repeat: no-repeat;
    /* filter: blur(4px);   */
    width: 100vw;
    height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome_h1{
    font-size: 100px;
    font-family: 'Roboto', sans-serif;
}
