@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: 'Open Sans', Arial, Verdana, sans-serif;
    background-color: rgb(248 250 252);
    margin: 0;
}

button {
    border: 0;
    background-color: inherit;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    outline: none;
    outline-color: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
