/* pale-yellow: #c4b033 */

/* yellow:  #f7df1d */

/* brown: #3f2f11 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background-color: #f7df1d;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: #c4b033;
  font-family: 'Fira Mono', monospace;
}

header {
  padding: 50px 0;
}

h1 {
  font-size: 52px;
}

h3 {
  margin-bottom: 20px;
}

h3 {
  font-weight: 300;
  font-size: 14px;
}

p {
  font-size: 12px;
}

ul {
  list-style-type: none;
  width: 100%;
}

ul li {
  display: inline-block;
  width: 75%;
  margin-bottom: 30px;
  padding: 30px;
  background: #4d4b3e;
  border-radius: 20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

ul li:hover {
  box-shadow: none;
  border-radius: 0;
}

ul li a {
  text-decoration: none;
  color: #f7df1d;
  outline: none;
}

ul li a h3 {
  font-size: 24px;
}

div.copyright {
  margin: 30px 0;
  font-size: 12px;
}

span {
  font-family: sans-serif;
}
