/*==========================================================
    NEXUS INFORMATIKA

    Fájl..............: reset.css
    Verzió............: 1.0.0

    Leírás:
    Böngésző alapértelmezett stílusainak egységesítése.
==========================================================*/


/*==========================================================
    MINDEN ELEM
==========================================================*/
*,
*::before,
*::after {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


/*==========================================================
    HTML
==========================================================*/

html {

    scroll-behavior: smooth;

}


/*==========================================================
    BODY
==========================================================*/

body {

    min-height: 100vh;

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;

}


/*==========================================================
    KÉPEK
==========================================================*/

img,
picture {

    display: block;

    max-width: 100%;

}


/*==========================================================
    LINKEK
==========================================================*/

a {

    color: inherit;

    text-decoration: none;

}


/*==========================================================
    LISTÁK
==========================================================*/

ul,
ol {

    list-style: none;

}


/*==========================================================
    ŰRLAPELEMEK
==========================================================*/

input,
button,
textarea,
select {

    font: inherit;

    border: none;

    outline: none;

    background: none;

}


/*==========================================================
    GOMBOK
==========================================================*/

button {

    cursor: pointer;

}


/*==========================================================
    TÁBLÁZATOK
==========================================================*/

table {

    border-collapse: collapse;

    border-spacing: 0;

}