:root {
    --primary: #d5d3d3;
    --primaryDark: #bab8b8;
    --primaryLight: #dfdede;
    /* --secondary: #837064; */
    --secondary: #a68e7f;
    --terciary: #181818;
}
#mobile-menu{
    display: none;
}
header{
    background-color: var(--secondary);
    margin-bottom: 2rem;
    position: sticky;
    top: 0;
    min-height: 4rem;
    
}
.header-nav{
    padding-left: 10rem;
    padding-right: 10rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    align-items: center;
}
.header-nav div{
    flex: 1;
}
#header-nav-links{
    display: flex;
    width : 20rem;
}
#header-user-links{
    display: flex;
    flex-direction: row-reverse;
}
#header-user-links form button{
    text-decoration: underline;
}
#logo{
    width : 3rem;
    height : 3rem;
}
#header-nav-links a, #header-user-links a, #header-user-links form{
    margin-right : 1rem;
    margin-left : 1rem;
    align-self: center;
}
#category-btn{
    font-weight:600;
}

body{
    font-size:18px;
    background-color: var(--primary);
    color: var(--terciary);
}
#main{
    min-height: calc(100vh - 12rem);
}
aside{
float: right;
position: absolute;
top: 10rem;
right: 1rem;
z-index: -1;
}
footer{
    background-color: var(--secondary);
    margin-top: 3rem;
    padding-left: 10rem;
    padding-right: 10rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    min-height: 4rem;
}
a, .pseudo-link{
    color: var(--terciary);
    text-decoration-line: underline;
    cursor: pointer;
    background: none;
    border: none;
}
b{
    font-weight: bold;
}
h1{
    font-size: 2.2rem;}
h2{
    font-size: 2em;}
h3{
    font-size: 1.8em;}
h4{
    font-size: 1.6em;}
h5{
    font-size: 1.4em;}
h6{
    font-size: 1.2em;}
/* Form Input */
button, .pseudo-btn, textarea, input, select{
    border: 0.15rem solid var(--secondary) ;
    border-radius: 3%;
}
button:focus, .pseudo-btn:focus, textarea:focus, input[type="text"]:focus, input[type="number"]:focus, select:focus{
    border-color: var(--terciary);
}
input[type="radio"]{
    appearance: radio;
}
input[type="checkbox"]{
    appearance: checkbox;
}
button, .pseudo-btn{
    background-color: var(--secondary);
    border-radius: 5%;
    text-decoration: none;
    cursor: pointer;
}


.wrapper{
    width: 80%;
    margin: 0 auto;
}
.tiny-wrapper{
    width: 50%;
    margin: 0 auto;
}
.flex, .flex-row, .flex-no-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
   
}
.flex-no-wrap{
    flex-wrap: nowrap;
}
.flex-col{
    display: flex;
    flex-direction:column;
    justify-content: space-between;
}
.flex-start{
    justify-content: flex-start;
}

.center{
    text-align: center;
}
.center-box{
    align-self: center;
    margin: auto;
}
.box-drop{
    box-shadow:  0.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.1);
    
}
.txt-drop{
    text-shadow: 0.1rem 0.1rem 0.4rem rgba(0, 0, 0, 0.1);
}

#legal{
    border: 0.2rem solid black;
    text-overflow: wrap;
    max-width: 15rem;
}
#mobile-menu{
    display: none;
}
#mobile-links{
    display: none;

    position: absolute;
    align-items: center;
    background-color: var(--secondary);


    right : 0;
    top:0;

    box-shadow: 0px 0px 5rem 1rem rgba(0, 0, 0, 0.5);
}
#mobile-links a, #mobile-links button{
    margin: 1rem;
    display: block;
}

@media only screen and (max-width: 1400px){
    .header-nav{
        padding-left: 2rem;
        padding-right: 2rem;
    }

}






/* Phone */
@media only screen and (max-width: 1000px) {

    #logo{
        width : 2rem;
        height : 2rem;
    }

    #title{
        font-size: 0.8rem;
    }
    #title h1{
        font-size: 1.5rem;
    }
    .header-nav{
        width: 95vw;
        margin: auto;
        padding: 0.2rem;
    }
    .wrapper{
        width: 98%;
    }
    .tiny-wrapper{
        width: 80%;
    }
    footer{
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    footer > a, footer > p, footer > button{
        margin : 0.5rem;
    }
    
    .pc-link{
        display: none;
        position: absolute;
    }
    #mobile-menu{
        display: block;
    }

}