
/* documentation all css styling */
*{
    margin: 0;
    padding: 0;
}

/* default styling css */

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Public sans",sans-serif;
}
section{
    padding: 30px;
}
.section_title{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.section_title h2{
    font-size: 32px;
    font-family: "Public sans",sans-serif;
    font-weight: bold;
    color: #ff4c3b;
}

figure.zoom {
    background-position: 50% 50%;
    position: relative;
    border: 5px solid white;
    height: auto;
    width: auto;
    overflow: hidden;
    cursor: zoom-in;
  }
  figure.zoom img:hover {
    opacity: 0;
  }
  figure.zoom img {
    transition: opacity 0.5s;
    display: block;
    width: 100%;
}

/* header styling css */
#doc_main{
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: grid;
    grid-template-columns: 20% 80%;
}
#doc_nav{
    background-color: #f5f7f9;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.dn_logo{
    padding: 20px 0px;
    text-align: center;
}
.dn_logo img{
    width: 150px;
}
#doc_info{
    background-color: #ffffff;
    height: 100vh;
    overflow: auto;
}
.dn_menu{
    width: 100%;
}
.dn_menu ul{
    list-style: none;
    width: 100%;
    padding: 20px 0px;
}
.dn_menu ul li{
    padding: 10px 30px;
    border: 1px solid transparent;
}
.dn_menu ul li.active{
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
}
.dn_menu ul li a{
    font-size: 18px;
    text-decoration: none;
    color: #000;
    font-family: "Public sans",sans-serif;
    transition: 0.2s ease-in-out;
}
.dn_menu ul li a:hover{
    color: #ff4c3b;
    transition: 0.2s ease-in-out;
}
.dn_menu ul li.active a{
    color: #ff4c3b;
}

/* intro section css */

#intro_section{
    padding: 30px;
    font-family: "Public sans",sans-serif;
}

/* feature section */
#feature_section{
    padding: 10px 30px;
}
#feature_section .fs_title{
    font-size: 32px;
    color: #ff4c3b;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    font-family: "Public sans",sans-serif;
}
#feature_section ul{
    list-style: square;
}
#feature_section ul li{
    padding: 7px 0px;
    font-family: "Public sans",sans-serif;
}

/* folder structure */

#folder_structure ul{
    list-style: circle;
}
#folder_structure ul li{
    padding: 7px 0px;
    font-family: "Public sans",sans-serif;
}


/* customizing area */
.cst_subtitle{
    font-size: 18px;
    font-weight: bold;
}
.customizer_pagename{
    padding: 10px 0px;
    text-align: center;
    background-color: #f6997054;
}
.customizer_pagename h3{
    font-size: 26px;
    font-weight: bold;
    color: #ff4c3b;
}
.customizer_pagename .line_dec{
    width: 80px;
    height: 4px;
    margin-top: 10px;
    background-color: #ff4c3b;
    margin: 0px auto;
}

/* build section */
.build_list{
    padding: 10px 0px;
}
.build_list ul li{
    padding: 5px 0px;
    list-style: square;
}
.terminal_wraper{
    padding: 20px;
    width: 100%;
    height: auto;
    border: 1px dotted rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}
.terminal_wraper .terminal{
    padding: 20px;
    background-color: #2b2b2b;
    color: #aaa;
}
#build > h6{
    margin: 10px 0px;
    font-weight: bold;
    font-family: sans-serif;
}
/* deploying section */
#deploy > h6{
    margin: 10px 0px;
    font-weight: bold;
    font-family: sans-serif;
}
.fullscreen_img_wraper{
    padding: 10px;
    border: 1px dotted rgba(0, 0, 0, 0.3);
}
