CSS
/* reset.css */

/* Normalize margins and paddings */
body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
a,
figure,
figcaption,
blockquote,
dl,
dd,
dt,
/* Added elements here */
button,
input,
optgroup,
select,
textarea,
legend,
/* Normalize all elements with type attribute */
[type],
fieldset {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Set default box-sizing for consistent behavior */
* {
  box-sizing: border-box;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}
h1 {
  font-size: 1.5em;
  margin: 0 0;
}
img {
  border-style: none;
}

/* Set consistent font size */
body {
  font-size: 16px;
}

/* Set default font family, adjust as needed */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  display: block;
  padding: 0;
  background-color: #F5F5DC;
}

.background-container {
  width: 90%;
  height: 600px;
  background-image: url('../img/engspan.jpg');
  background-size: cover;
  background-position: center;
  border: 2px solid blue;
}