/*** TYPOGRAPHY ***/

@import url("https://fonts.googleapis.com/css?family=Crimson+Text:400,600|Manrope:400,500,600,700");

html {
  font-size: 100%;
} /*16px*/

body {
  background: white;
  font-family: "Manrope", sans-serif;
  /* font-family: "Crimson Text", serif; */
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
  margin: 0;
}

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
p,
label {
  /*
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  */
}

h1,
h2,
h3,
h4,
h5 {
  margin: 3rem 0 1.38rem;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

form > h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

small,
.text_small {
  font-size: 0.8rem;
}

/*** OTHER ***/

body * {
  box-sizing: border-box;
}

main > form {
  max-width: 650px;
}

label {
  padding-right: 0.5rem;
  display: block;
}

fieldset {
  border-radius: 10px;
  margin-bottom: 5rem;
}

fieldset > div,
fieldset > label {
  margin-top: 1.5rem;
}

fieldset > :first-child {
  margin-top: 1rem;
}

input[type="checkbox"],
input[type="radio"] {
  margin-top: 0.5rem;
}

input,
input[type="checkbox"],
textarea {
  border: 1px solid #888;
  border-radius: 5px;
}

.i,
.d,
.t,
.u,
.l {
  font-weight: 600;
}

.l,
.i label,
.d label,
.t label,
.u label {
  margin-bottom: 0.75rem;
}

.c {
  margin-top: 0.25rem;
  display: flex;
  align-items: top;
}

.o.c {
  margin: 1rem 0;
  font-size: 0.8rem;
}
.o.c span {
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #888;
  padding: 10px 20px;
  width: 100%;
  color: #888;
}
.o.c input {
  display: none;
}
.o.c input[type="radio"]:checked + span {
  border: 2px solid #3e6ae1;
  padding: 9px 19px;
  color: black;
}

input[type="text"],
input[type="date"] {
  padding: 0.25rem;
  width: 100%;
}

textarea {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
}

aside {
  display: none;
}

button[type="submit"] {
  font-size: 200%;
  border-radius: 5px;
  border: 2px solid black;
  padding: 1rem 2rem;
  font-weight: 700;
  background: inherit;
  width: 100%;
  cursor: pointer;
}

a {
  text-decoration: none;
}

a,
a:visited {
  color: #005a66;
}

main > a:first-child {
  text-align: right;
}

main {
  margin: 2rem;
  padding-bottom: 12rem;
}

fieldset {
  border: 0;
  padding: 0;
}

header {
  min-height: 4rem;
  background-color: #005a66;
  text-align: center;
  padding-top: 0.5rem;
}

h2 {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: #aaa;
  text-underline-offset: 6px;
}

#logo svg {
  color: white;
  padding: 1rem;
}

.c {
  cursor: pointer;
}

.cb {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-top: 3px;
  cursor: pointer;
  user-select: none;
}
.cb input {
  position: absolute;
  opacity: 0;
}
.cb span {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #666;
  box-sizing: content-box;
  border-radius: 4px;
}
.cb:hover input ~ span {
  background-color: #bbb;
}
.cb input:checked ~ span {
  background-color: #2196f3;
}
.cb span:after {
  content: "";
  position: absolute;
  display: none;
}
.cb input:checked ~ span:after {
  display: block;
}
.cb span:after {
  left: 7px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

main {
  margin: 1rem 2rem;
  max-width: 700px;
}

#landing {
  background-color: #fbf7f3;
}
#landing > div {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  min-height: 75vh;
  padding: 2rem;
  color: #8e4c9e;
  margin-bottom: 6rem;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.66;
  max-width: 40rem;
}
#landing p {
  word-wrap: keep-all;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  hyphens: manual;
}
#landing p:first-child {
  font-size: 3.052rem;
  font-weight: 700;
  font-family: "Crimson Text", serif;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.11;
}
#landing a {
  background-color: #005a66;
  color: white;
  font-size: 1.563rem;
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 46rem) {
  main {
    margin: 1rem 3rem;
    margin-right: 4rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto;
    gap: 5rem;
  }
  aside {
    order: 1;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 4rem;
    align-self: start;
    margin-top: 6rem;
    justify-items: right;
    justify-content: right;
    text-align: right;
    text-align: left;
  }
}

/* acacia stuff, which can be removed */

@import url("https://fonts.googleapis.com/css?family=Poppins:100,400,600,700");

header {
  background: white;
}
#logo img {
  max-width: 8rem;
}
#landing {
  background: #253551;
  color: white;
}
#landing > div {
  font-weight: 100;
  color: white;
}
#landing p:first-child {
  font-weight: 100;
  color: white;
}
#landing a {
  background: white;
  color: #253551;
  font-weight: 600;
}
a,
a:visited {
  color: #253551;
}
body,
#landing p:first-child {
  font-family: "Poppins", sans-serif;
}
