@import "font.css";
@import "header.css";
@import "accueil.css";
@import "shop.css";
@import "footer.css";


:root {
    --couleur-accent: #FAFFF1;
    --gris-fonce: #B3B3B3;
    --gris-pale: #E3E3E3;
  }
html {
    font-size: 14px;
    position: relative;
    box-sizing: border-box;
}
body {
    font-family: "Work Sans";
    margin: 0;
}
header, footer, h3 {
    font-family: "Brandon Grotesque";
}
h3 {
    font-size: 1.5rem;
    letter-spacing: .15em;
    font-weight: 900;
}
header, main, footer {
    margin: 0 2rem;
}
section {
    margin: 2rem 0;
}
a {
    text-decoration: none;
    color: black;
}
p {
    font-weight: 500;
    max-width: 42rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}
/* button reset */
button {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
    vertical-align: baseline;
    text-decoration: underline;    
}
.logo {
    grid-column: col 2;
    text-align: center;
    font-family: "Brandon Grotesque";
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: black;
    filter: drop-shadow(0 0 2px #666666);
    white-space: nowrap;
}
.active {
    text-decoration: underline;
}




    
