/* ==========================================================
   CENTURION
   CSS RESET
   ========================================================== */

/* Box Model */

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

/* Smooth Scroll */

html{
    scroll-behavior:smooth;
}

/* 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%;

}

/* Forms */

input,
button,
textarea,
select{

    font:inherit;

    color:inherit;

    background:none;

    border:none;

    outline:none;

}

/* Buttons */

button{

    cursor:pointer;

}

/* Links */

a{

    color:inherit;

    text-decoration:none;

}

/* Lists */

ul,
ol{

    list-style:none;

}

/* Tables */

table{

    border-collapse:collapse;
    border-spacing:0;

}

/* Text */

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

    overflow-wrap:break-word;

}

/* Textareas */

textarea{

    resize:vertical;

}

/* Selection */

::selection{

    background:var(--color-gold);

    color:var(--color-bg);

}

/* Focus */

:focus-visible{

    outline:2px solid var(--color-gold);

    outline-offset:3px;

}

/* Disabled */

button:disabled{

    cursor:not-allowed;

    opacity:.5;

}