

:root {
	--base-clr: #white;
	--line-clr: #42434a;
	--hover-clr:#b9e6f4;
	--text-clr: #gray;
	--accent-clr: #31b7b5;
	--secondary-text-clr: #b0b3c1;
	
}
*{
	margin: 0;
	padding: 0;
}



main {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "nav header" "nav article" "footer footer";
}
    
header {
  grid-area: header;
  background: lightblue;
}

nav {
  grid-area: nav;
  background: whtie;
  padding-top: 15px;
 }

article {
  grid-area: article;
  background: white;
}
  
footer {
  grid-area: footer;
  background: cleer;
  padding-top: 30px; 
}



#sidebar{
	box-sizing: border-box;
	height: 100vh;
	width: auto;
	background-color: var(--base-clr);
	
	
	position: sticky;
	top: 0;
	align-self: start;

	
	
	
}

#sidebar ul{list-style:none;
}
#sidebar > ul > li:first-child{
	display:flex;
	justify-content:fex-end;
	margin-bottom: 16px;
		
}
.logo{
		font-weight:700;
	    color:red;
        font-size: 3mm;
	}
.navbold{
    font-weight:700;
    font-size: 4mm;
}



#sidebar a, #sidebar.dropdown-btn, #sidebar.logo{
	border-radius: .5em;

	text-decoration: none;
	color: var(--text-clr);
	display: flex;
	align-items: center;
	gap: 0.5em;
    
}



#sidebar a span, #sidebar.dropdown-btn span{
	
}
#sidebar a:hover, #sidebar.dropdown-bt:hover{
    background-color: var(--hover-clr);
    font-family: "Sans Serif Collection";
}

	
}



