* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, textarea, select {
    border: none;
    outline: none;
    background: none;
    font: inherit;
}

button {
    cursor: pointer;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #fff;
    color: #333;
}

h1, h2, h3{
    margin: 0px;
    font-family: 'Meriah', Arial, sans-serif;
}

p {
    font-family: 'Product Sans Regular', Arial, sans-serif;
}


@font-face {
    font-family: 'Meriah';
    src:url('../fonts/Meriah.otf') format('opentype'),
}

@font-face {
    font-family: 'Product Sans Regular';
    src:url('../fonts/Product-Sans-Regular.ttf') format('truetype'),
}

@font-face {
    font-family: 'Product Sans Bold';
    src:url('../fonts/Product-Sans-Bold.ttf') format('truetype'),
}

@media(max-width: 1200px) {
    html {
        font-size: 16px;
    }
    
}