* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
}

body {
  width: 100%;
  background: var(--color-bg-cream);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
blockquote, .contact-name {
  font-family: var(--font-display);
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  border: none;
  background: none;
  cursor: pointer;
}

section {
  position: relative;
  width: 100%;
}
