body {
  font-size: 5vw;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

#app {
  display: flex;
  flex-direction: column;
}

#main {
  flex-grow: 10;
}

#map {
  flex-grow: 10;
  align-items: stretch;
}

#header {
       background-image: url('/images/header.png');
       background-position: center top, left top;
       background-repeat: no-repeat;
       background-color: maroon;
       padding: 10vw 0 2vw 0;
       background-size: 120vw auto,auto;
       clear: both;
       font-family: Arial, Helvetica, sans-serif;
       font-weight: lighter;
       box-shadow: 0px 0px 20px 2px rgb(0 0 0 / 75%);
       overflow: auto;
}

ul {
  padding: 0px;
}

li {
  list-style: none;
  width: max-content;
}

#header li {
  float: left;
  padding: 10px;
  text-decoration: none;
  color: antiquewhite;
  list-style: none;
}

#header a:nth-last-child(1) li {
  float: right;
}

#main {
  clear: both
}

#searchbox {
  text-align: center;
  padding: 10vw;
}

#searchboxinput {
  width: 80%;
  margin: auto;
  font-size: large;
  padding: 5vw;
  border-width: 1px;
  border-radius: 5px;
  border-color: rgb(177, 111, 25);
}

#searchresults {
  background-color: #eee;
  clear: both;
  width: 80%;
  margin: auto;
}

#searchresults li {
  padding: 10px;
  border-bottom: 1px black dotted;
  text-decoration: none;
  width: 80%;
  margin: 10px auto;
  color: maroon;
  list-style: none;
}

#searchresults a:nth-last-child(1) li {
  border-bottom: none;
}

a {
  text-decoration: none;
}

.table_num {
  margin: 5vw;
  font-size: 20vw;
  color:goldenrod;
  align-self: center;
  vertical-align: middle;
}

.table_round {
  width: 30vw;
  height: 30vw;
  border-radius: 15vw;
  vertical-align: middle;
  margin: 5vw 10vw;
}

#table_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

body {
  padding: 0px;
  margin: 0px;
}

.shadow {
  box-shadow: 0 15px 10px -10px rgb(0 0 0 / 75%), 0 1px 4px rgb(0 0 0 / 30%);
}

#invite_images {
  margin: 10vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.guest {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-content: center;
}

.guest > .avatar {
  margin: 5vw;
  align-self: center;
}

.guest-tag {
  font-size: smaller;
  font-weight: lighter;
  font-style: italic;
}

#invite_guests {
  margin: 5vw;
  font-size: larger;
  text-align: center;
  color: goldenrod;
}


.avatar {
  border: solid 5px #eee;
  width: 35vw;
  height: 35vw;
  text-align: initial;
}

#invite_images .avatar:nth-child(1) {
  transform: rotate(-5deg);
}

#invite_images .avatar:nth-child(2) {
  transform: rotate(5deg);
}

#invite_images .avatar:nth-child(3) {
  transform: rotate(2deg);
}
