@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
/* font-family: 'Roboto', sans-serif; */


html {scroll-behavior: smooth;}
body {
    padding: 0;
    margin: 0;
    background-color: #fff;
}

.bold {font-weight: bold;}
.italic {font-style: italic;}
a {text-decoration: none;}

/*************************************************
    Topbar Section
*************************************************/
#menu-bar {display: none;}

.topbar {
    background-color: #f0f7fc;
    padding: 10px 0;
    position: relative;
}

#navbar {height: 100%;}

#navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    height: 100%;
}

#navbar ul li a {
    font-size: 16px;
    color: #4e4e4e;
}

#navbar ul li a:hover {
    color: #272727;
}

/*************************************************
    About Section
*************************************************/
.about {margin: 30px 0;}

p, ol li, ul li  {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
}

@media screen and (max-width: 767px) {
    /*************************************************
        Topbar Section
    *************************************************/
    #menu-bar {
        display: block;
        position: absolute;
        top: 40px;
        right: 12px;
        font-size: 28px;
        color: #272727;
    }

    #navbar ul {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 10px;
        background-color: #bdd9e9;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        padding: 15px;
        display: none;
    }

    #navbar ul a {
        display: block;
        color: #4e4e4e;
        padding: 5px 0;
    }
}