* {
    padding: 0; /*padding is the inner space*/
    margin: 0; /*margin is the outer space*/
    box-sizing: border-box; /*accounts for margin and padding when assigning demensions to elements*/
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;

}

:root {
    --bg-color: rgb(255, 255 ,255);
    --bg-color-two: rgb(255, 255, 255);
    --text-color: rgb(0, 0, 0);
    --main-font: 2.2rem;
    --p-font: 1.1rem;
    --border-radius: 10px;
}

body {
    background: var(--bg-color);
    display:flex;
    justify-content: center;
}


#page {
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    width:100%;
    /*border: 1px solid red;*/
}

#top-header {
    display:flex;
    justify-content: center;
    margin-top: 62px;
    width: 100%;
    height: 100px;
    border-top: 1px solid rgb(211, 211, 211);
    border-bottom: 1px solid rgb(211, 211, 211);
}

/*header start*/

#header-container {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width:100%;
    max-width: 1080px;
    /*border: 1px solid blue;*/
}

#branding-container {
    font-size: 50px;
    font-weight: bold;
    color: rgb(0,0,128);
    /*border: 1px solid red;*/
}

#menu-container {
    color: rgb(0,0,128);
    /*border:1px solid red;*/
}

#menu-container li{
    float:left;
    font-size: 20px;
    color: rgb(0,0,128);
    margin-left:40px;
}

#menu-container a{
    font-weight: 600;
    color: rgb(139,0,0);
}

#menu-container a:hover{
    
    color: rgb(0,0,0);
}

/*header end*/

/*main content start*/

#main-content {
    display:flex;
    justify-content: center;
    margin-top:50px;
    /*border: 1px solid red;*/
}

