@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
body{
    background-color: var(--background-primary);
}
.wrapper{
    height: 100%;
}
a{
    text-decoration: none;
}
.header {
    padding: 0.7rem;
    text-align: center;
}
.head-name{
    font-family: 'Architects Daughter', cursive
}
.main{
    padding: 1rem;
    text-align: center;
}
.main-description-head{
    text-decoration: underline;
}
.footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: var(--background-gray);
}
.footer-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
}
.text-light{
    padding: 1rem 0rem 2rem 0rem;
}
.text__muted{
    font-size: 0.8rem;
}
.social-icons{
    padding: 1rem 0rem 0.5rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.link{
   padding-left: 1rem;
}
.link-primary{
    font-size: 1.2rem;
    font-weight: bold;
}
.components{
    margin: 0.5rem;
    background-color: var(--background-gray);
    border-radius: 1rem ;
}
.components-example{
    padding: 0.5em;
}

@media screen and (min-width : 769px) {
    .main{
        padding: 2rem 3rem;
        text-align: center;
    }
    .main-description{
        max-width: 700px;
        width: 100%;
        margin: auto;
    }
    .header{
        padding: 1.5rem;
    }
    .text-light{
        padding: 0.7rem 0rem;
    }
    .footer-description {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 1rem;
    }
    .text__muted{
        font-size: 1rem;
    }
    .content {
        display: grid;
        grid-template-columns: 1fr 3fr;
        grid-column-gap: 1rem;
    }
    .sidebar{
        background-color: var(--background-gray);
        padding: 0.5rem 0rem 1.5rem 1rem;
        margin: 1rem;
        height: 85vh;
        border-radius: 1rem;
        position: sticky;
        top: 0;
        left: 0;
    }
    .sidebar-menu{
        display: flex;
        flex-direction: column;
        justify-content: space-around   ;
    }
    .components{
        margin: 1rem;
        background-color: var(--background-gray);
        border-radius: 1rem ;
    }
    .components-example{
        padding: 1.5rem;
    }
    .components-example > .text-headings , .text-warning , .text-light{
        padding: 0.6rem;
    }
    .components-example > .text-light {
        padding: 0.6rem;
    }
    .frame{
        width: 100%;
    }
}