/* === Global Reset === */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Montserrat", sans-serif;
}

body {
  background: #eee;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  padding: 0 16px;
  min-height: 100vh;
  position: relative;
}

/* === Header === */
header {
  background-color: #f5ba13;
  margin: auto -16px;
  padding: 16px 32px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

header h1 {
  color: #fff;
  font-family: "McLaren", cursive;
  font-weight: 200;
}

/* === Footer === */
footer {
  text-align: center;
  width: 100%;
  padding: 12px 0;
  position: relative;
  bottom: 0;
}

footer p {
  color: #aaa;
  font-size: 0.9rem;
}
