/* 
    Elements 
*/

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    background-color: rgb(240, 240, 240);
}

main {
    min-height: 80vh;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

menu.no-style,
ul.no-style {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 
    Typography 
*/

.text-micro {
    font-size: 12px;
    line-height: 1.2em;
}

.text-small {
    font-size: 16px;
    line-height: 1.2em;
}

.text-medium {
    font-size: 24px;
    line-height: 1.2em;
    letter-spacing: -0.05em;
}

.text-large {
    font-size: 42px;
    line-height: 1.1em;
    letter-spacing: -0.05em;
}

.text-mono {
    font-family: "Menlo", "Monaco", "Courier New", monospace;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.text-micro.text-mono {
    font-size: 11px;
}

.text-small.text-mono {
    font-size: 14px;
}

/* Tablet (> 1024) */
@media screen and (min-width: 48rem) {
    .hide-desktop {
        display: none;
    }
}

/* 
    Margins and Paddings 
*/

.margin-bottom-s {
    margin-bottom: 1rem;
}

.margin-bottom-m {
    margin-bottom: 1rem;
}

