/* github.com/hankchizljaw/modern-css-reset MIT License */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* from github.com/tailwindlabs/tailwindcss MIT License */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fafaf9;
  color: #292524;
  font-family: "Lora", "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  max-width: 40rem;
  margin: auto;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Corben", "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1 {
  margin-bottom: 1rem;
}

h2 {
  margin-bottom: 0.5rem;
}

a {
  color: #1e40af;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

address {
  margin: 1rem 0;
}

button {
  background-color: #f5f5f4;
  border-radius: 0.25rem;
  border: 1px solid #292524;
  color: #292524;
  cursor: pointer;
  padding: 0.25rem 1rem;
}

button:hover {
  background-color: #d6d3d1;
}

button:disabled {
  border: 1px solid #a8a29e;
  color: #a8a29e;
  cursor: not-allowed;
}

.main-section {
  margin: 4rem 0;
}

.header-info {
  margin: 3rem 0;
}
.header-info h1 {
  margin: 0 0 0.25rem;
}
.header-info .date {
  margin: 0;
}

.hero {
  display: none;
  margin: 2rem 0.5rem;
}
.hero img {
  border-radius: 1rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (max-width: 499px) {
  .main-nav {
    display: none;
  }

  .header-info {
    background: center/cover url("images/hero.jpg");
    display: flex;
    flex-direction: column;
    height: 80vh;
    justify-content: space-between;
    margin: 0;
    padding: 3.5rem 0.5rem;
    color: #fff;
    text-shadow: #000 1px 1px 2px;
    font-size: 1.5rem;
  }
  .header-info h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 500px) {
  .main-nav ul {
    display: flex;
    justify-content: space-around;
  }

  .hero {
    display: block;
  }
}
.label-list__entry {
  margin: 0.5rem;
  display: block;
}
.label-list__item {
  display: block;
}
.label-list__label {
  font-size: 0.8rem;
  display: block;
}

@media (min-width: 500px) {
  .label-list__entry {
    display: flex;
  }
  .label-list__item {
    flex: 1 100%;
    text-align: left;
    padding: 0 0.5rem;
  }
  .label-list__label {
    flex: 1 100%;
    font-size: 1rem;
    text-align: right;
    padding: 0 0.5rem;
  }
}
.wedding-party {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wedding-party__single {
  margin: 1rem 0;
}
.wedding-party section {
  margin: 0 1rem 0rem;
  min-width: 12rem;
}
.wedding-party__title {
  display: block;
  font-style: italic;
  font-size: 0.9rem;
}
.wedding-party li {
  margin: 0.5rem 0;
}

.registry-description {
  text-align: left;
  max-width: 25rem;
  margin: auto;
}

.galpal {
  margin: 1rem;
}
.galpal__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.galpal picture {
  display: flex;
  flex-direction: column;
  height: min(40rem, 85vh);
  justify-content: center;
}
.galpal img {
  margin: 0 auto;
  max-height: min(40rem, 85vh);
}

/*# sourceMappingURL=style.css.map */
