/* =========================================
   AKI FEST RESET CSS
   Browser Normalization
========================================= */


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


*,
*::before,
*::after {


    margin:0;


    padding:0;


    box-sizing:border-box;


}







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


html {


    scroll-behavior:smooth;


    -webkit-text-size-adjust:100%;


}







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


body {


    min-height:100vh;


    line-height:1.5;


    text-rendering:optimizeLegibility;


    -webkit-font-smoothing:antialiased;


}







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


img,
picture,
video,
canvas,
svg {


    display:block;


    max-width:100%;


}







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


a {


    color:inherit;


    text-decoration:none;


}







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


button,
input,
textarea,
select {


    font:inherit;


}







button {


    cursor:pointer;


    border:none;


    background:none;


}







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


ul,
ol {


    list-style:none;


}







/* =========================
   HEADINGS
========================= */


h1,
h2,
h3,
h4,
h5,
h6,
p {


    overflow-wrap:break-word;


}







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


table {


    border-collapse:collapse;


    border-spacing:0;


}







/* =========================
   FORM ELEMENTS
========================= */


input,
textarea {


    outline:none;


}







/* =========================
   SAFER MOBILE
========================= */


html,
body {


    width:100%;


    overflow-x:hidden;


}







/* =========================
   ACCESSIBILITY
========================= */


:focus-visible {


    outline:2px solid #ff75a8;


    outline-offset:3px;


}