/* Reset CSS */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%; /* Default font size */
    line-height: 1.15; /* Default line height */
    -webkit-text-size-adjust: 100%; /* Disable text size adjust for mobile */
}

body {
    margin: 0;
    font-family: Arial, sans-serif; /* Set a default font-family */
}

main {
    display: block; /* Ensure the main tag displays properly */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

p,
blockquote,
figure,
pre {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
input,
textarea,
select {
    font: inherit; /* Ensure consistent font styling */
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

textarea {
    resize: none; /* Disable resizing by default */
}

:root {
    --default-font: 'Roboto', sans-serif;
}

/* Remove focus outline for mouse users but keep for keyboard users */
*:focus:not(:focus-visible) {
    outline: none;
}
