/* ===================================================================
   BASE/RESET.CSS
   Browser Default Resets ONLY
   =================================================================== */

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

/* Body reset */
body {
    /* Layout */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    
    /* Overflow */
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    
    /* Scrollbar hiding */
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;      /* IE and Edge */
}

/* Hide scrollbar for Webkit browsers */
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

/* HTML reset */
html {
    margin: 0;
    padding: 0;
}

/* Remove default margins */
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote {
    margin: 0;
    padding: 0;
}

/* List reset */
ul, ol {
    list-style: none;
}

/* Link reset */
a {
    text-decoration: none;
}

/* Button reset */
button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

/* Image reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}


