*, *::before, *::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;

  font-size: 1.2rem;
}

body {
  margin: 0;
  background-color: #4e4a46;
  font-family: 'Raleway', sans-serif;
  color: #fffce1;
}

p {
  line-height: 1.4rem;
}

a {
  color: #c94e50;
  text-decoration: none;
}

h2 a {
  color: #4e4a46;
}

h2 a:hover {
  color: #c94e50;
}

h2 {
  max-width: 36rem;
  padding: 0 1rem;
  margin: auto;
  color: #fffce1;
  font-weight: 400;
  line-height: 2rem;
  text-align: center;
}

h3 {
  margin-top: 2rem;

  color: #c94e50;
  font-weight: 600;
}

header {
  position: relative;
  background-color: #b4bad2;
  padding: 4rem 0 4rem;
  border-bottom: 3rem solid #c94e50;
}

.burger {
  position: relative;
  display: block;
  width: 15rem;
  margin: 0 auto 2rem;
}

.burger svg {
  fill: #4e4a46;
}

.burger:hover svg {
  fill: #c94e50;
}

.burger::after {
  position: absolute;
  top: 1.8rem;
  left: 0;
  right: 0;
  color: #b4bad2;
  content: 'R';
  font-family: 'Righteous', sans-serif;
  font-size: 4rem;
  text-align: center;
}

main {
  max-width: 46rem;
  padding: 2rem 1rem;
  margin: auto;
}
