@charset "utf-8";
/* -------------------------------------------------------------------------------- */
/*																					*/
/* UUSENERGIA NETTISIVUJEN RESET-TYYLITIEDOSTO 										*/
/*																					*/
/* Versio 30.5.2025 																*/
/*																					*/
/* -------------------------------------------------------------------------------- */


/* Preferred box-sizing value */
*,
*::before,
*::after
{
    font: inherit;
    box-sizing: border-box;
}

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

h1, h2, h3, p
{
    margin: 0;
    padding: 0;
}

@media (prefers-reduced-motion: no-preference)
{
    :has(:target)
    {
        scroll-padding-top: 3rem;
    }
}

