/* Universal reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

/* Root element styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: var(--font), serif;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
}