/* caniuse.com */
/* ///// this stylesheet is just to reset the browser styles to default //// */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body {
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #000000;
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
a {
    color: inherit;    
    text-decoration: none;
}
button, a {
    display: inline-block;
    all: unset;
    cursor: pointer; 
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}