/* A CSS Reset */

/* Remove all margins, paddings, and set box-sizing to border-box for consistent layout. */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Set a consistent base font size and family */
html {
    font-size: 18px; /* Adjust to your preference */
    line-height: 1.5;
    font-family: sans-serif; /* Change to your preferred font family */
}

/* Remove default list styles */
ul,
ol {
    list-style: none;
}

/* Remove default margin from body */
body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: 'Arial', sans-serif; /* Ensure consistency in font family */
    color: #F6F6F6; /* Set a default text color */
    background-color: #263540; /* Set a default background color */
}

/* Remove default styles from links */
a {
    text-decoration: none;
    color: inherit;
}

/* Ensure images do not exceed their container's width */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure input, button, textarea, and select elements inherit the font style */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

/* Remove default button styles */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Remove default table styles */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Remove default form element margins */
input,
textarea,
select {
    margin: 0;
}

/* Remove default blockquote and figure styles */
blockquote,
figure {
    margin: 0;
}

/* Remove default header and paragraph margins */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: 300; /* Adjust to your preference */
}

/* Ensure consistent focus outline */
:focus {
    outline: 2px solid blue; /* Adjust color to your preference */
    outline-offset: 2px;
}
