body{
    margin: 0;
    color: #fff;
    background-color: #474E68;
}

html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}


#navbar{
    height: 100%;
    width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #404258;
    color: #fff;

    /* display: grid; */
}

ul li{
    padding-bottom: 10px;
    line-height: 1.6;
}

.headernav{
    font-size: 30px;
    padding: 10px 0px 10px 20px;
    margin: auto;
}
#navbar a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    display: block;
    padding: 16px 0px 16px 25px;
    /* margin-bottom: 10px; */
}

#navbar a:hover{
    background-color: #474E68;
}

#main-doc{
    margin-left: 300px;
    padding: 20px 20px 20px 30px;
    transition: 1s;
    font-size: 16px;
}


section:target>.section_header {
    font-size: 30px;
    
    /* background-color: hsl(227.3,18.9%,37.3%); */
}

.section_header{
    transition: 1s;
    font-family: Times, Times New Roman, serif;
    margin-left: -15px;
    font-weight: bold;
}


p{
    color: #f5f5f5;
    padding-top: 10px;
    line-height: 1.8;
    font-size: 16px;
}

.main-section>header{
    font-size: 25px;
}

.main-section{
    margin-bottom: 30px;
}

code{
    display: block;
    border-radius: 5px;
    font-family: courier, monospace;
    font-size: 15px;
    margin: 10px 10px 10px 10px;
    background-color: hsl(227.3,18.9%,40%);
    padding: 10px 20px 10px 20px;
}