* {
  box-sizing: border-box;
  font-family: "Quicksand", Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}

body {
  background-color: #dedede;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 8px;
  width: 100%;
  margin: auto;
  border: #dedede;
  height: 100vh;
}

.content {
  flex-grow: 1;
  display: flex;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header > h1 {
  font-family: "Amatic SC";
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  align-items: center;
  text-align: center;
  color: #818181;
}

.header > p {
  font-size: 18px;
}

.emphasis {
  color: #996789;
}

.logo {
  text-align: center;
}

.logo img {
  width: 340px;
  height: 104px;
  display: none;
}

.copyright-notice {
  font-size: 12px;
  color: #414141;
  text-align: center;
  padding-bottom: 8px;
}