/* Remove default styles */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
    /* Dark Color Scheme */
    color-scheme: dark;

    /* Smooth Scrolling */
    scroll-behavior: smooth;
}

body {
    /* Cover full size */
    max-width: 100vw;
    min-height: 100vh;

    /* Wrap everywhere */
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* Set wanted behaviour */
img, picture, svg, video {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}