* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;

    background: linear-gradient(
        to bottom,
        #fffafa,
        #f7eeee
    );

    color: #181818;
}

#wrapper,
#main {
    min-height: 100vh;
}

#wrapper {
    position: relative;
    z-index: 1;
}

button,
input {
    font: inherit;
}