/* ==========================================================
   HerGame Phoenix
   Reset
   File: reset.css
   ========================================================== */

/* Box sizing */

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

/* Remove default spacing */

* {
    margin: 0;
    padding: 0;
}

/* Better scrolling */

html {
    scroll-behavior: smooth;
}

/* Body defaults */

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

/* Media */

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

/* Form elements */

input,
button,
textarea,
select {
    font: inherit;
}

/* Buttons */

button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Links */

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

/* Lists */

ul,
ol {
    list-style: none;
}

/* Tables */

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

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font: inherit;
    font-weight: inherit;
}

/* Paragraphs */

p {
    overflow-wrap: break-word;
}

/* Text selection */

::selection {
    background: var(--color-primary);
    color: #ffffff;
}