@font-face {
    font-family: Roboto;
    src: url('../fonts/Roboto-Regular.ttf');
}

/* Variables Decleration Start */
:root{
    /* --primarycolor: #FFB200; */
    --primarycolor: #43B629;
    /* --sidebarcolor: #333333; */
    --sidebarcolor: #292b2c;
    --white: rgb(243, 236, 236);
    --black: #000;
    --gray: #1b1b1b;
    --bordercolor: #555555;
}
/* Variables Decleration End */

/* Universal Styling Start */
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Roboto;
}
/* Universal Styling End */

/* Color Styling Start */
.primarycolor{
    color: var(--primarycolor);
}
.bgwhite{
    background-color: #fff;
}
/* COlor Styling End */

/* Body Styling Start Here */
body {
    position: relative; 
    background-color: 	#f7f7f7;
}
/* Body Styling End Here */

/* Heading Styling Start */
.heading{
    background-color: var(--sidebarcolor);
    color: var(--white);
    padding: 10px 20px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
}
/* Heading Styling End */



/* Introduction Section Styling Start */
#introuction, #html-structure{
    min-height: 100vh;
}
.websitename{
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primarycolor);
}
.tagline{
    font-style: italic;
    color: var(--gray);
}

tr{
    line-height: 40px;
}
th{
    padding-right: 10px;
}

.link{
    text-decoration: none;
    color: var(--primarycolor) !important;
}
/* Introduction Section Styling End */
