/*
==========================================================
OUANAMINTHE FC
RESET CSS
Version: 1.0
Author: Cherlin Elmorin & ChatGPT
==========================================================
*/

/* ===============================
   BOX MODEL
================================ */

*,
*::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;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* ===============================
   MEDIA
================================ */

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
}

/* ===============================
   FORM ELEMENTS
================================ */

input,
button,
textarea,
select{
    font:inherit;
    border:none;
    outline:none;
    background:none;
}

/* ===============================
   BUTTONS
================================ */

button{
    cursor:pointer;
    border:none;
    background:none;
}

/* ===============================
   LINKS
================================ */

a{
    text-decoration:none;
    color:inherit;
}

/* ===============================
   LISTS
================================ */

ul,
ol{
    list-style:none;
}

/* ===============================
   TABLES
================================ */

table{
    border-collapse:collapse;
    border-spacing:0;
}

/* ===============================
   HEADINGS
================================ */

h1,
h2,
h3,
h4,
h5,
h6{
    font-weight:inherit;
}

/* ===============================
   PARAGRAPHS
================================ */

p{
    overflow-wrap:break-word;
}

/* ===============================
   TEXT SELECTION
================================ */

::selection{
    background:#33A8FF;
    color:#FFFFFF;
}

/* ===============================
   DISABLED ELEMENTS
================================ */

button:disabled,
input:disabled{
    cursor:not-allowed;
}