/* reset browser styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
}
  
html, body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    font-family: sans-serif;
    line-height: 1.5;
}
  
ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

input, button, textarea, select {
    border: none;
    background: none;
    outline: none;
    font: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

textarea{
    resize: none;
}

/* end reset browser styles */