/* ==========================================================
   HEGAU24 FRAMEWORK
   File: reset.css
   Version: 1.0.0
   Description: Modern CSS Reset
========================================================== */

/* ======================================
   BOX MODEL
====================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

/* ======================================
   RESET
====================================== */

*{
    margin:0;
    padding:0;
}

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

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

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

body{
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* ======================================
   IMAGES
====================================== */

img,
picture,
svg,
video{
    display:block;
    max-width:100%;
}

/* ======================================
   LINKS
====================================== */

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

/* ======================================
   LISTS
====================================== */

ul,
ol{
    list-style:none;
}

/* ======================================
   BUTTONS
====================================== */

button{
    font:inherit;
    color:inherit;
    background:none;
    border:none;
    cursor:pointer;
}

/* ======================================
   INPUTS
====================================== */

input,
textarea,
select{
    font:inherit;
}

/* ======================================
   TABLES
====================================== */

table{
    border-collapse:collapse;
    border-spacing:0;
}