:root {
  --black: rgb(34, 34, 34);
  --white: rgb(247, 243, 243);
  font-size: 16px;
  --heading-font: "Yeseva One", cursive;
  --body-font: "Josefin Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--black);
}

body {
  min-height: 100vh;
  background-image: url("lights-comp.jpg");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center;
  background-size: cover;
  font-family: var(--body-font);
  font-size: calc(1em + 1vw);
}

.spacing {
  padding: 20px;
}

.content {
  width: 70%;
  margin: 20px auto;
  background-color: rgba(207, 207, 207, 0.7);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 40px 20px;
}

.hero {
}
.hero h1 {
  /* text-transform: uppercase; */
  font-family: var(--heading-font);
}

.hero .tagline {
  font-style: italic;
}

.small-updates {
  font-size: calc(0.1em + 1vw);
}

main {
  margin: 0 auto;
  width: 95%;
}

article {
}

article p {
  padding: 10px 0;
}

span.title {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}

span.info {
  display: block;
}

.info {
}

.map-container {
}
/* Set the size of the div element that contains the map */
#map {
  height: 500px;
  /* The height is 400 pixels */
  width: 50%;
  /* The width is the width of the web page */
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5);
}

.rsvp {
}

.rsvp button {
  font-size: 1em;
  padding: 10px 15px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  outline: none;
  border: 1px solid black;
}

footer {
}

.bg-credit {
  font-size: 0.3em;
}

@media screen and (max-width: 1000px) {
  .content {
    width: 95%;
    padding: 10px 10px;
  }

  #map {
    height: 400px;
    width: 90%;
  }

  span.hyphen {
    font-family: sans-serif;
  }

  .small-updates {
    font-size: calc(0.3em + 1vw);
  }
}
