html {
  box-sizing: border-box;
}

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

body {
  font-family: 'Oswald', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  background-color: #f3f1eb;
  color: #39312d;
  padding: 0;
  margin: 0;
}

.container {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
}

.content {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.footer {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background-color: #39312d;
}

.footer p {
  max-width: 100%;
  color: #fefefe;
}

.logo-wrapper {
  width: 100%;
  max-width: 380px;
  margin-bottom: 1rem;
}

.logo {
  width: 100%;
  height: auto;
}

.title {
  width: 100%;
  font-weight: 500;
  max-width: 60ch;
  text-align: center;
}

.subtitle {
  width: 100%;
  max-width: 60ch;
  font-weight: 400;
  text-align: center;
}

p {
  width: 100%;
  max-width: 60ch;
  text-align: center;
  line-height: 1.5;
}

a,
a:visited {
  color: #39312d;
}

a:hover,
a:focus {
  color: #497e77;
  text-decoration: none;
}

.text-primary {
  color: #497e77;
}

.text-bold {
  font-weight: 700;
}

.text-light {
  font-weight: 300;
}
