/* reset.css */

/* Box sizing rules */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
}

/* Set default font smoothing */
html {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    color: #222;
}

/* Ensure elements are sized as expected */
html, body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

#app {
    width: 100%;
    min-height: 100vh;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove text decoration on anchors */
a {
    text-decoration: none;
    color: inherit;
}

/* Make images easier to work with */
img {
    /*display: block;*/
    max-width: 100%;
    height: auto;
}

/* Form elements */
button, input, textarea {
    font: inherit;
    background-color: transparent;
    border: none;
    outline: none;
}

/* Prevent vertical resizing of textarea */
textarea {
    resize: none;
}

/* Reset table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Reset iframe styles */
iframe {
    display: block;
    border: none;
    width: 100%;
}