/* Reset global compartilhado por todas as telas */
* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    min-height: 100%
}

body {
    font-family: Inter, Arial, sans-serif
}

button,
input {
    font: inherit
}

button {
    cursor: pointer
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    max-width: 100%
}