/* assets/css/reset.css */

/* 1. Make sizing easier to manage */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove all default spacing */
* {
    margin: 0;
    padding: 0;
}

/* 3. Set a full height for the page */
html,
body {
    height: 100%;
}

/* 4. Make images responsive so they never break the layout */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 5. Make buttons and inputs use your Manrope font */
input,
button,
textarea,
select {
    font: inherit;
}

/* 6. Prevent long words from breaking out of containers */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}