/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* Links */

a {
    text-decoration: none;
    color: inherit;
}

/* Images */

img {
    max-width: 100%;
    display: block;
}

/* Lists */

ul {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}