@import url(components.css);

@import url(alert/alert.css);
@import url(avatar/avatar.css);
@import url(badges/badges.css);
@import url(images/image.css);
@import url(typography/typography.css);
@import url(/img);
@import url(input/input.css);
@import url(buttons/buttons.css);

#sidebar{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 100vh;
    box-shadow: 0 4px 4px 0 var(--shadow-color-);
    position: fixed;
    padding:7rem 0 2rem 0;    
}


.component-varient{
   color: black;
   padding: 0.5rem 4rem;   
    text-decoration: none;
    font-weight: bolder;
    font-size:0.9rem; 
}

.component-varient:hover{
color: var(--primary-color);
background-color: var(--primary-color);
color: var(--off-white-);

}

.title{
    color: black;
    padding: 0.5rem 4rem;   
     text-decoration: none;
     font-weight: bolder;
     font-size: larger; 
     color: var(--primary-color);

}



#header-nav-link-link{
    color: var(--off-white-);
    text-decoration: none;
    
}

.component-title{
    font-weight: bolder;
    text-align: center;
    font-size: 1.5rem;
}

.documentcontent-header{
    text-align:center;
    margin: 2rem;
    font-size: 2rem;
    width: 80vw;
}




#hero{
    position:fixed;
    z-index: 99;
    background-color: var(--off-white-);

}

#main{
    padding: 8rem 0 5rem 16rem;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-content: center;
    

}

#componentsfooter{
    width: 100vw;
    

}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 740px) {
    #sidebar{
        display: none;
    }
    
    #documentcontent{
        width: 100vw;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        position: relative;
         top:+90px ;
        
    }
}



