/* styles.css */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100dvw;
    height: dvh;
    font-family:'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.5;
}

img {
    max-width: 100dvw;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button, input, textarea {
    font: inherit;
    border: none;
    outline:auto
}
