:root {
  --white: #F6F3F1;
  --brown: #4E4541;
  --bone: #F6E4CB;
  --icon-size: 50px;
}

* {
  font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: var(--white);
}

main {
  color: var(--brown);
}

header {
  height: 100px;
  background: var(--brown);
  color: var(--bone);
  align-content: center;
  text-align: center;
  display: flex;
}

article {
  max-width: 48em;
  text-align: center;
  margin: auto;
}

h2 {
  text-align: center;
  margin-top: 2rem;
  font-size: 2rem;
}

p {
  margin: auto;
  line-height: 1.75em;
  text-align: justify;
}

.container {
  margin: 2rem;
}

.title {
  font-size: 3.25em;
  font-weight: 900;
  margin: auto auto 2rem auto;
  text-align: center;
}

.center {
  margin: auto;
}

.logo {
  width: var(--icon-size);
  height: var(--icon-size);
  margin: auto 0 auto 1rem;
}

.screenshot {
  width: 14rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.guide {
  p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}