/* ******************************************** */
/** GENERIC: SCREEN
/* ******************************************** */

/* BODY */

html{
    font-size: 10px;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body{
    font-size: 100%;
}
body, input, textarea, select, button{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    font-family: var(--font), sans-serif;
    font-weight: 400;
    color: var(--color-darkest);
    background-color: #E6DDCF;
}
p{
    text-rendering: optimizeLegibility;
}
strong{
    font-weight: 700;
}
em{
    font-style: italic;
}
input, textarea, select, button{
    border: none;
    outline: none;
    resize: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
}
input:not([type="checkbox"]):not([type="radio"]), textarea, select, button{
    -webkit-appearance: none;
}

button{
    overflow: visible;
    font-size: inherit;
}

a, button{
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    outline: none;
}

img{
    display: inline-block;
    max-width: 100%;
}

.grecaptcha-badge {
    visibility: hidden;
}