@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* URL variables */
/* Theme color uses a harmony of green and blue hues */
/* Font information */
/* using Bree from TypeTogether foundry https://www.type-together.com/ */
/* font only in regular serif style from Google Fonts */
/* all 14 sans fonts can be purchased at https://www.type-together.com/bree-font */
a.link {
  color: #184c90;
  background-color: #edebdf;
  padding-left: 0.25em;
  padding-right: 0.25em;
  margin-left: 0.25em;
  margin-right: 0.25em;
  text-decoration: none;
  position: relative;
}
a.link::before {
  position: absolute;
  z-index: -1;
  content: "";
  background: #edebdf;
  height: 0.5rem;
  left: 0;
  bottom: -0.25rem;
  width: 0%;
  opacity: 0.5;
  transition: all 0.6s;
  transform: rotate(-1deg);
}
a.link:hover::before {
  width: 100%;
}

a.link:hover {
  color: #192527;
}

img {
  max-width: 100%;
}

hr {
  border: 0;
  border-top: 1px dotted #edebdf;
}

button {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#index img.portrait {
  border: 10px solid #edebdf;
  border-radius: 50%;
  width: 300px;
  height: 300px;
}
#index div.copy {
  width: 85%;
  margin-top: 30px;
}
#index div.copy p {
  line-height: 1.618em;
  font-size: 1.3rem;
}

#pricing li {
  margin-bottom: 7px;
  list-style-type: "◆";
}
#pricing .features {
  margin-top: 4vh;
  letter-spacing: 4px;
  word-spacing: 5px;
  line-height: 1.5rem;
}
#pricing .features li {
  margin-bottom: 8px;
  list-style-type: "🌟";
}

@media (min-width: 60em) {
  #pricing #photo-pricing > .container {
    margin-bottom: 3vh;
  }
  #pricing #photo-pricing > .container p {
    line-height: 1.5rem;
  }
  #pricing #photo-pricing > .container button {
    width: 75%;
    margin-top: 3.5vh;
    margin-left: -1vw;
    letter-spacing: 0.5em;
    font-weight: normal;
    font-size: 1.1em;
  }
}
@media (min-width: 20em) and (max-width: 50em) {
  #index {
    margin-block: 3rem;
  }
  #pricing {
    margin-block: 3rem;
  }
  #pricing #photo-pricing > .container {
    margin-bottom: 2vh;
  }
  #pricing #photo-pricing > .container p {
    line-height: 1.4rem;
  }
  #pricing #photo-pricing > .container button {
    width: 100%;
    margin-top: 2vh;
    letter-spacing: 0.35em;
    font-weight: bolder;
    font-size: 1em;
  }
  #pricing li {
    margin-left: 10px;
    line-height: 1.25rem;
  }
  #pricing .features li {
    margin-left: 12px;
  }
}
h1 {
  margin-left: -13px;
  font-size: 6rem;
}

h2 {
  margin-left: -4px;
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 2.75rem;
}

h3 {
  margin-left: -4px;
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

@media (min-width: 60em) {
  #photo-pricing h2 {
    letter-spacing: 0.25em;
  }
}
@media (min-width: 20em) and (max-width: 50em) {
  #photo-pricing h2 {
    letter-spacing: -0.015em;
  }
}
body {
  margin: 1rem auto;
}

#pricing .model-me-prices {
  display: grid;
  margin-bottom: 5vh;
  column-gap: 3vw;
}

@media (min-width: 60em) {
  #index main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 20vh;
  }
  #index main img.portrait {
    margin: 2em 4em;
  }
  #pricing .model-me-prices {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-rows: auto auto auto;
  }
  #pricing #mandy {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  #pricing #wedding {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  #pricing #zhangHan {
    grid-column: 1/4;
    grid-row: 3/4;
    margin-top: 20px;
  }
  #pricing #photographer {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 50em) and (max-width: 60em) {
  #index main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  #index main img.portrait {
    margin: 1em 2em;
  }
  #index .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #index .profile .communicationInfo {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  #index .intro {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #index .intro h1 {
    display: none;
  }
  #index .intro h2 {
    margin-top: 1.65rem;
  }
}
@media (min-width: 20em) and (max-width: 50em) {
  body {
    margin: 1.8rem auto;
  }
  #index main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  #index main .profile {
    justify-self: center;
  }
  #index main img.portrait {
    margin: 1em 2em;
  }
  #index main .intro > h1 {
    display: none;
  }
  #index main .intro > h2 {
    display: none;
  }
  #index main .intro > .copy {
    display: none;
  }
  #index main div.right {
    align-self: center;
    text-align: center;
  }
  #index main div.right h3 {
    position: relative;
    top: -3.25rem;
  }
  #index main .email, #index main .GPG {
    position: relative;
    left: 2.5vw;
  }
  #index main .email > a {
    font-size: 1.2rem;
  }
  #index main .GPG {
    top: 0.25em;
  }
  #pricing .model-me-prices {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 2rem;
  }
  #pricing #mandy {
    grid-row: 2/3;
  }
  #pricing #zhangHan {
    grid-row: 3/4;
  }
  #pricing #photographer {
    grid-row: 5/6;
  }
  #pricing #wedding {
    grid-row: 7/8;
  }
}
@media (min-width: 60em) {
  #index .profile {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: -1.5rem;
  }
  #index .profile .communicationInfo {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-right: 7px;
  }
  #index .profile .email {
    margin-top: -1rem;
    font-size: 1.25rem;
  }
  #index .profile .email a {
    color: #edebdf;
  }
  #index .profile .GPG {
    margin-top: 0.75rem;
    font-size: 1.25rem;
  }
  #pricing .model-me-prices > div .row {
    justify-content: center;
  }
}
@media (min-width: 50em) and (max-width: 60em) {
  #index main .column.left {
    display: flex;
  }
  #index main .column.left .communicationInfo > div {
    margin-bottom: 0.75rem;
  }
  #index main .column.left .communicationInfo > div .GPG {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 20em) and (max-width: 50em) {
  #index .communicationInfo {
    display: flex;
    flex-grow: 1;
    flex-flow: column wrap;
    gap: 1rem;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  color: #edebdf;
}

body {
  background-color: #293158;
}

#index {
  overflow: hidden;
}

#pricing {
  margin-top: 5vh;
  overflow: visible;
}

/*# sourceMappingURL=site.css.99c1c0eb734d.map */
