*{
    margin: 0px;
    padding: 0px;
}
/* Reference used: 
1: www.w3school.com
2: www.javatpoint.com
3: www.geeksforgeeks.com
*/
html{
    scroll-behavior: smooth;
}
/* :root{

} */


/*Navigation css ends here.*/
#navbar{
    display: flex;
    align-items: right;
    position: sticky;
    top: 0px;
    z-index: 10;
}

#navbar ul li{
    font-size: 2rem;
    padding-left: 50px;
}

#navbar::before{
    content: "";
    background-color: rgb(38, 0, 255);
    position: absolute;
    height: 110%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}
#navbar ul{
    display: flex;
    list-style: none;
    padding-left: 350px;
}

#navbar ul li a:hover{
    color: black;
    background-color: white;
}

#navbar ul li a{
    color: white;
    border-radius: 20px;
    padding: 3px 22px;
    display: block;
    text-decoration: none;
}
/*Navigation css ends here.*/


#home::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}

#home{
    display: flex;
    flex-direction: row;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
    height: 400px;
    padding-top: 100px  ;
    padding-bottom: 130px;
}



#home h1{
    padding-top: 150px;
    color: black;
    text-align: center;
    font-family: 'Lobster', cursive;
}


#home div{
    /* width: 70%; */
    display: flex;
    float: left;
}
