*
{
  margin: 0;
  padding: 0;
}

html
{
  display: flex;
  flex-direction: column;
  gap: 1rem;

  font-family: "Open Sans", sans-serif;
  font-size: 100%;

  --accent-light: #00487C;
  --accent-dark: #00487C;
}

body
{
  display: flex;
  flex-direction: column;
  gap: 1rem;

  margin: 0;
  padding: 2rem;

  color: #2E3138;

  line-height: 1.5;
}

main
{
  width: 100%;
  max-width: 50rem;

  display: block;

  margin: 0 auto;
}

h1
{
  margin-top: 2rem;
  margin-bottom: 1rem;

  font-size: 2.2rem;
}

h1:first-child
{
  margin-top: 0;
}

h1:last-child
{
  margin-bottom: 0;
}

h2
{
  margin-top: 2rem;
  margin-bottom: 1rem;

  font-size: 1.6rem;
}

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

h2:last-child
{
  margin-bottom: 0;
}

h3
{
  margin-top: 1rem;
  margin-bottom: 1rem;

  font-size: 1.2rem;
}

h3:first-child
{
  margin-top: 0;
}

h3:last-child
{
  margin-bottom: 0;
}

p
{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

p:first-child
{
  margin-top: 0;
}

p:last-child
{
  margin-bottom: 0;
}

ol,
ul
{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  list-style-position: inside;
  list-style-type: square;
}

a,
a:link,
a:visited
{
  color: var(--accent-light);
  text-decoration: none;
}

a:hover
{
  color: var(--accent-dark);
}

form
{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

label
{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label.checkbox
{
  flex-direction: row;
}

label>div
{
  display: flex;
}

input,
textarea
{
  display: block;

  padding: 0.25rem;

  font: inherit;
  line-height: 1.5;

  border: 1px solid black;
  ;
  border-radius: 2px;
  outline: none;
}

input:focus-visible,
textarea:focus-visible
{
  border: 1px solid #027BCE;
  outline: none;
}

button
{
  font: inherit;
  outline: none;
  border: none;
}

.cta,
.cta:link,
.cta:visited
{
  display: inline-block;

  padding: 0.75rem 1rem;

  color: white;
  background: var(--accent-light);

  border-radius: 4px;
}

.cta:hover
{}

.larger
{
  font-size: 1.25rem;
}

.bordered
{
  display: block;

  margin: 2rem -1rem;
  padding: 1rem;

  border: 4px double black;
  border-color: var(--accent-light);
  border-radius: 4px;

  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.bordered:first-child
{
  margin-top: 0;
}

.bordered:last-child
{
  margin-bottom: 0;
}

.dedication
{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.sefyr
{
  width: 7rem;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}
