/* DEFAULTS */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

html {
    font-size: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: auto;
    padding: 0;
    font-family: "Nunito", sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 2;
}

:root {
    --orange: #F58B63;
    --green: #95B99D;
    --yellow: #C9A94D;
    --grey: #A4A4A4;
}

@media (max-width: 1280px) {
    body {
        font-size: 1rem;
    }
}