:root {
  --body-vanilla: #FEFEFE;

  --border-cherry-base: #F82805;

  --text-cherry-base: #F82805;

  --text-small-mulberry: #D31E00;
}

body {
  background: var(--body-vanilla, #FFFFFA);

  margin: 0px;
  padding: 32px 48px 48px 48px;


  display: flex;
  flex-direction: column;
}

div {
  display: flex;
}

h1 {
  font-family: "halyard-display", sans-serif;
  font-weight: 200;
  font-size: 32px;
  font-style: normal;
  margin: 0px;

  color: var(--text-cherry-base, #F82805);
}

h2 {
  font-family: "halyard-display", sans-serif;
  font-weight: 200;
  font-size: 20px;
  font-style: normal;
  margin: 0px;

  color: var(--text-cherry-base, #F82805);
}

a {
  text-decoration: none;
  color: var(--text-cherry-base, #F82805);
}

a:hover {
  color: var(--text-cherry-base, #A5221F);
}

p {
  font-family: "halyard-display", sans-serif;
  font-weight: 200;
  font-size: 18px;
  font-style: normal;
  margin: 0px;

  color: var(--text-cherry-base, #F82805);
}

img {
  width: 100%;
  height: auto;
}

i {
  color: var(--text-cherry-base, #F82805);
  font-size: 24px;
}

/* body */

nav {
  display: flex;
  padding: 24px 24px 32px 24px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 16px;
}


/*sections */

section {
  display: flex;
  padding: 24px;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
}

.box {
  display: flex;
  padding: 24px;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;

  border-radius: 4px;
  border: 1px dashed #F82805;
  box-shadow: 0 1px 1px 0 rgba(255, 92, 60, 0.50);
}

.img-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}